| 1334 | } |
| 1335 | |
| 1336 | void GLES2RenderSystem::_destroyFbo(GLContext* context, uint32 fbo) |
| 1337 | { |
| 1338 | if(context != mCurrentContext) |
| 1339 | context->_getFboDeferredForDestruction().push_back(fbo); |
| 1340 | else |
| 1341 | OGRE_CHECK_GL_ERROR(glDeleteFramebuffers(1, &fbo)); |
| 1342 | } |
| 1343 | |
| 1344 | void GLES2RenderSystem::_bindVao(GLContext* context, uint32 vao) |
| 1345 | { |
no test coverage detected