| 1360 | } |
| 1361 | |
| 1362 | void gte::glDeleteTextures(GLsizei n, const GLuint* textures) |
| 1363 | { |
| 1364 | ::glDeleteTextures(n, textures); |
| 1365 | ReportGLError("glDeleteTextures"); |
| 1366 | |
| 1367 | #if defined(GTE_ENABLE_GLTRACE) |
| 1368 | gsTrace.Call("glDeleteTextures", "", |
| 1369 | n, gsTrace.GetArray(n, textures)); |
| 1370 | #endif |
| 1371 | } |
| 1372 | |
| 1373 | void gte::glGenTextures(GLsizei n, GLuint* textures) |
| 1374 | { |
nothing calls this directly
no test coverage detected