| 3597 | } |
| 3598 | |
| 3599 | void APIENTRY glEnableVertexAttribArray(GLuint index) |
| 3600 | { |
| 3601 | if (sglEnableVertexAttribArray) |
| 3602 | { |
| 3603 | sglEnableVertexAttribArray(index); |
| 3604 | ReportGLError("glEnableVertexAttribArray"); |
| 3605 | } |
| 3606 | else |
| 3607 | { |
| 3608 | ReportGLNullFunction("glEnableVertexAttribArray"); |
| 3609 | } |
| 3610 | |
| 3611 | #if defined(GTE_ENABLE_GLTRACE) |
| 3612 | gsTrace.Call("glEnableVertexAttribArray", "", |
| 3613 | index); |
| 3614 | #endif |
| 3615 | } |
| 3616 | |
| 3617 | void APIENTRY glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei* length, GLint* size, GLenum* type, GLchar* name) |
| 3618 | { |
no test coverage detected