| 3010 | } |
| 3011 | |
| 3012 | void APIENTRY glBindBuffer(GLenum target, GLuint buffer) |
| 3013 | { |
| 3014 | if (sglBindBuffer) |
| 3015 | { |
| 3016 | sglBindBuffer(target, buffer); |
| 3017 | ReportGLError("glBindBuffer"); |
| 3018 | } |
| 3019 | else |
| 3020 | { |
| 3021 | ReportGLNullFunction("glBindBuffer"); |
| 3022 | } |
| 3023 | |
| 3024 | #if defined(GTE_ENABLE_GLTRACE) |
| 3025 | gsTrace.Call("glBindBuffer", "", |
| 3026 | gsTrace.GetName(target), buffer); |
| 3027 | #endif |
| 3028 | } |
| 3029 | |
| 3030 | void APIENTRY glDeleteBuffers(GLsizei n, const GLuint* buffers) |
| 3031 | { |
no test coverage detected