summaryrefslogtreecommitdiff
path: root/src/resources/openglimagehelper.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-06-08 01:36:38 +0300
committerAndrei Karas <akaras@inbox.ru>2014-06-08 01:36:38 +0300
commite05655679e7bd9488c31169ece3d404fd9160c8d (patch)
tree1389938ad33bced4a978ce4faee9284cf99994ff /src/resources/openglimagehelper.cpp
parent410dd6c3d845cc0e19fd678090d95669bdeb5885 (diff)
downloadplus-e05655679e7bd9488c31169ece3d404fd9160c8d.tar.gz
plus-e05655679e7bd9488c31169ece3d404fd9160c8d.tar.bz2
plus-e05655679e7bd9488c31169ece3d404fd9160c8d.tar.xz
plus-e05655679e7bd9488c31169ece3d404fd9160c8d.zip
copy mobileopengl into modernopengl.
Diffstat (limited to 'src/resources/openglimagehelper.cpp')
-rw-r--r--src/resources/openglimagehelper.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/resources/openglimagehelper.cpp b/src/resources/openglimagehelper.cpp
index ca5f6410a..2ce4bd405 100644
--- a/src/resources/openglimagehelper.cpp
+++ b/src/resources/openglimagehelper.cpp
@@ -29,6 +29,7 @@
#include "render/mgl.h"
#include "render/mobileopenglgraphics.h"
+#include "render/modernopenglgraphics.h"
#include "render/normalopenglgraphics.h"
#include "render/safeopenglgraphics.h"
@@ -202,9 +203,11 @@ Image *OpenGLImageHelper::glLoad(SDL_Surface *tmpImage,
{
#ifndef ANDROID
case RENDER_NORMAL_OPENGL:
- case RENDER_MODERN_OPENGL:
NormalOpenGLGraphics::bindTexture(mTextureType, texture);
break;
+ case RENDER_MODERN_OPENGL:
+ ModernOpenGLGraphics::bindTexture(mTextureType, texture);
+ break;
case RENDER_SAFE_OPENGL:
SafeOpenGLGraphics::bindTexture(mTextureType, texture);
break;