summaryrefslogtreecommitdiff
path: root/src/resources/safeopenglimagehelper.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-18 20:11:43 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-18 20:11:43 +0300
commitb4fcb4e1b208b6127ca28412d1a75f1ef30d1f85 (patch)
tree08a558072be002e07161927df163065a42d9c0ba /src/resources/safeopenglimagehelper.cpp
parent3fb675aa416170395d80eb51435a0d09161baf36 (diff)
downloadplus-b4fcb4e1b208b6127ca28412d1a75f1ef30d1f85.tar.gz
plus-b4fcb4e1b208b6127ca28412d1a75f1ef30d1f85.tar.bz2
plus-b4fcb4e1b208b6127ca28412d1a75f1ef30d1f85.tar.xz
plus-b4fcb4e1b208b6127ca28412d1a75f1ef30d1f85.zip
Fix compilation for android.
Diffstat (limited to 'src/resources/safeopenglimagehelper.cpp')
-rw-r--r--src/resources/safeopenglimagehelper.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/resources/safeopenglimagehelper.cpp b/src/resources/safeopenglimagehelper.cpp
index 1271b7e1b..44c8ca124 100644
--- a/src/resources/safeopenglimagehelper.cpp
+++ b/src/resources/safeopenglimagehelper.cpp
@@ -22,7 +22,7 @@
#include "resources/safeopenglimagehelper.h"
-#ifdef USE_OPENGL
+#if defined(USE_OPENGL) && !defined(ANDROID)
#include "graphicsmanager.h"
#include "logger.h"
@@ -265,6 +265,15 @@ void SafeOpenGLImageHelper::bindTexture(const GLuint texture)
case RENDER_GLES2_OPENGL:
MobileOpenGL2Graphics::bindTexture(mTextureType, texture);
break;
+#elif defined(ANDROID)
+ case RENDER_NORMAL_OPENGL:
+ case RENDER_MODERN_OPENGL:
+ case RENDER_SAFE_OPENGL:
+ case RENDER_GLES2_OPENGL:
+ break;
+ case RENDER_GLES_OPENGL:
+ MobileOpenGLGraphics::bindTexture(mTextureType, texture);
+ break;
#else // __native_client__
case RENDER_NORMAL_OPENGL:
NormalOpenGLGraphics::bindTexture(mTextureType, texture);
@@ -472,4 +481,4 @@ void SafeOpenGLImageHelper::copySurfaceToImage(const Image *const image,
MSDL_FreeSurface(surface);
}
-#endif
+#endif // defined(USE_OPENGL) && !defined(ANDROID)