GRAPHICS: Set the namespace for OpenGL classes to OpenGL

This commit is contained in:
Bastien Bouclet 2016-01-04 22:09:12 +01:00
parent 6aa353866f
commit 4c2c1b4d36
13 changed files with 34 additions and 33 deletions

View file

@ -129,7 +129,7 @@ Texture *ShaderRenderer::createTexture(const Graphics::Surface *surface) {
OpenGLTexture *texture = new OpenGLTexture(surface, true);
#if defined(USE_GLES2)
texture->setUnpackSubImageSupport(Graphics::isExtensionSupported("GL_EXT_unpack_subimage"));
texture->setUnpackSubImageSupport(OpenGL::isExtensionSupported("GL_EXT_unpack_subimage"));
#endif
return texture;