| 1326 | } |
| 1327 | |
| 1328 | void GLES2RenderSystem::_destroyVao(GLContext* context, uint32 vao) |
| 1329 | { |
| 1330 | if(context != mCurrentContext) |
| 1331 | context->_getVaoDeferredForDestruction().push_back(vao); |
| 1332 | else |
| 1333 | OGRE_CHECK_GL_ERROR(glDeleteVertexArraysOES(1, &vao)); |
| 1334 | } |
| 1335 | |
| 1336 | void GLES2RenderSystem::_destroyFbo(GLContext* context, uint32 fbo) |
| 1337 | { |
no test coverage detected