| 6533 | } |
| 6534 | |
| 6535 | void APIENTRY glBindFramebuffer(GLenum target, GLuint framebuffer) |
| 6536 | { |
| 6537 | if (sglBindFramebuffer) |
| 6538 | { |
| 6539 | sglBindFramebuffer(target, framebuffer); |
| 6540 | ReportGLError("glBindFramebuffer"); |
| 6541 | } |
| 6542 | else |
| 6543 | { |
| 6544 | ReportGLNullFunction("glBindFramebuffer"); |
| 6545 | } |
| 6546 | |
| 6547 | #if defined(GTE_ENABLE_GLTRACE) |
| 6548 | gsTrace.Call("glBindFramebuffer", "", |
| 6549 | gsTrace.GetName(target), framebuffer); |
| 6550 | #endif |
| 6551 | } |
| 6552 | |
| 6553 | void APIENTRY glDeleteFramebuffers(GLsizei n, const GLuint* framebuffers) |
| 6554 | { |
no test coverage detected