| 3525 | } |
| 3526 | |
| 3527 | void APIENTRY glDeleteProgram(GLuint program) |
| 3528 | { |
| 3529 | if (sglDeleteProgram) |
| 3530 | { |
| 3531 | sglDeleteProgram(program); |
| 3532 | ReportGLError("glDeleteProgram"); |
| 3533 | } |
| 3534 | else |
| 3535 | { |
| 3536 | ReportGLNullFunction("glDeleteProgram"); |
| 3537 | } |
| 3538 | |
| 3539 | #if defined(GTE_ENABLE_GLTRACE) |
| 3540 | gsTrace.Call("glDeleteProgram", "", |
| 3541 | program); |
| 3542 | #endif |
| 3543 | } |
| 3544 | |
| 3545 | void APIENTRY glDeleteShader(GLuint shader) |
| 3546 | { |
no test coverage detected