| 151 | } |
| 152 | |
| 153 | void glBindFramebufferEXT(GLenum target, GLuint framebuffer) |
| 154 | { |
| 155 | if(faker::getOGLExcludeCurrent() || faker::getEGLXContextCurrent()) |
| 156 | { |
| 157 | _glBindFramebufferEXT(target, framebuffer); |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | TRY(); |
| 162 | |
| 163 | backend::bindFramebuffer(target, framebuffer, true); |
| 164 | |
| 165 | CATCH(); |
| 166 | } |
| 167 | |
| 168 | |
| 169 | void glDeleteFramebuffers(GLsizei n, const GLuint *framebuffers) |