| 2308 | } |
| 2309 | |
| 2310 | void APIENTRY glGenTextures(GLsizei n, GLuint* textures) |
| 2311 | { |
| 2312 | if (sglGenTextures) |
| 2313 | { |
| 2314 | sglGenTextures(n, textures); |
| 2315 | ReportGLError("glGenTextures"); |
| 2316 | } |
| 2317 | else |
| 2318 | { |
| 2319 | ReportGLNullFunction("glGenTextures"); |
| 2320 | } |
| 2321 | } |
| 2322 | |
| 2323 | GLboolean APIENTRY glIsTexture(GLuint texture) |
| 2324 | { |
no test coverage detected