| 1371 | } |
| 1372 | |
| 1373 | void gte::glGenTextures(GLsizei n, GLuint* textures) |
| 1374 | { |
| 1375 | ::glGenTextures(n, textures); |
| 1376 | ReportGLError("glGenTextures"); |
| 1377 | |
| 1378 | #if defined(GTE_ENABLE_GLTRACE) |
| 1379 | gsTrace.Call("glGenTextures", "", |
| 1380 | n, gsTrace.GetArray(n, textures)); |
| 1381 | #endif |
| 1382 | } |
| 1383 | |
| 1384 | GLboolean gte::glIsTexture(GLuint texture) |
| 1385 | { |
nothing calls this directly
no test coverage detected