| 2295 | } |
| 2296 | |
| 2297 | void APIENTRY glDeleteTextures(GLsizei n, const GLuint* textures) |
| 2298 | { |
| 2299 | if (sglDeleteTextures) |
| 2300 | { |
| 2301 | sglDeleteTextures(n, textures); |
| 2302 | ReportGLError("glDeleteTextures"); |
| 2303 | } |
| 2304 | else |
| 2305 | { |
| 2306 | ReportGLNullFunction("glDeleteTextures"); |
| 2307 | } |
| 2308 | } |
| 2309 | |
| 2310 | void APIENTRY glGenTextures(GLsizei n, GLuint* textures) |
| 2311 | { |
no test coverage detected