| 6817 | } |
| 6818 | |
| 6819 | void APIENTRY glBindVertexArray(GLuint array) |
| 6820 | { |
| 6821 | if (sglBindVertexArray) |
| 6822 | { |
| 6823 | sglBindVertexArray(array); |
| 6824 | ReportGLError("glBindVertexArray"); |
| 6825 | } |
| 6826 | else |
| 6827 | { |
| 6828 | ReportGLNullFunction("glBindVertexArray"); |
| 6829 | } |
| 6830 | |
| 6831 | #if defined(GTE_ENABLE_GLTRACE) |
| 6832 | gsTrace.Call("glBindVertexArray", "", |
| 6833 | array); |
| 6834 | #endif |
| 6835 | } |
| 6836 | |
| 6837 | void APIENTRY glDeleteVertexArrays(GLsizei n, const GLuint* arrays) |
| 6838 | { |
no test coverage detected