| 2282 | } |
| 2283 | |
| 2284 | void APIENTRY glBindTexture(GLenum target, GLuint texture) |
| 2285 | { |
| 2286 | if (sglBindTexture) |
| 2287 | { |
| 2288 | sglBindTexture(target, texture); |
| 2289 | ReportGLError("glBindTexture"); |
| 2290 | } |
| 2291 | else |
| 2292 | { |
| 2293 | ReportGLNullFunction("glBindTexture"); |
| 2294 | } |
| 2295 | } |
| 2296 | |
| 2297 | void APIENTRY glDeleteTextures(GLsizei n, const GLuint* textures) |
| 2298 | { |
no test coverage detected