diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-17 02:48:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-17 02:48:17 +0300 |
commit | 8d32becc5b0fe645d1b8dc4245310ff35ebd8777 (patch) | |
tree | 26b25e949a6a787c8d85e452545e3a8bfa70de06 /src/render | |
parent | 23f8cc7c1db313710180c0b1864a93cc76d2492d (diff) | |
download | plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.tar.gz plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.tar.bz2 plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.tar.xz plus-8d32becc5b0fe645d1b8dc4245310ff35ebd8777.zip |
Fix unit tests if build with SDL2 support.
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/graphics.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/render/graphics.cpp b/src/render/graphics.cpp index 383ce96fd..e589058c5 100644 --- a/src/render/graphics.cpp +++ b/src/render/graphics.cpp @@ -320,7 +320,9 @@ bool Graphics::setOpenGLMode() restrict2 GLint texSize; bool rectTex = graphicsManager.supportExtension( - "GL_ARB_texture_rectangle"); + "GL_ARB_texture_rectangle") || + graphicsManager.supportExtension("GL_EXT_texture_rectangle"); + if (rectTex && OpenGLImageHelper::getInternalTextureType() == 4 && getOpenGL() != RENDER_GLES_OPENGL |