| 136 | |
| 137 | |
| 138 | void glBindFramebuffer(GLenum target, GLuint framebuffer) |
| 139 | { |
| 140 | if(faker::getOGLExcludeCurrent() || faker::getEGLXContextCurrent()) |
| 141 | { |
| 142 | _glBindFramebuffer(target, framebuffer); |
| 143 | return; |
| 144 | } |
| 145 | |
| 146 | TRY(); |
| 147 | |
| 148 | backend::bindFramebuffer(target, framebuffer); |
| 149 | |
| 150 | CATCH(); |
| 151 | } |
| 152 | |
| 153 | void glBindFramebufferEXT(GLenum target, GLuint framebuffer) |
| 154 | { |
no test coverage detected