| 5513 | } |
| 5514 | |
| 5515 | void APIENTRY glBindBufferBase(GLenum target, GLuint index, GLuint buffer) |
| 5516 | { |
| 5517 | if (sglBindBufferBase) |
| 5518 | { |
| 5519 | sglBindBufferBase(target, index, buffer); |
| 5520 | ReportGLError("glBindBufferBase"); |
| 5521 | } |
| 5522 | else |
| 5523 | { |
| 5524 | ReportGLNullFunction("glBindBufferBase"); |
| 5525 | } |
| 5526 | |
| 5527 | #if defined(GTE_ENABLE_GLTRACE) |
| 5528 | gsTrace.Call("glBindBufferBase", "", |
| 5529 | gsTrace.GetName(target), index, buffer); |
| 5530 | #endif |
| 5531 | } |
| 5532 | |
| 5533 | void APIENTRY glTransformFeedbackVaryings(GLuint program, GLsizei count, const GLchar* const* varyings, GLenum bufferMode) |
| 5534 | { |
no test coverage detected