From b4fcb4e1b208b6127ca28412d1a75f1ef30d1f85 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 18 Dec 2015 20:11:43 +0300 Subject: Fix compilation for android. --- src/resources/safeopenglimagehelper.cpp | 13 +++++++++++-- src/resources/safeopenglimagehelper.h | 4 ++-- 2 files changed, 13 insertions(+), 4 deletions(-) (limited to 'src/resources') 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) diff --git a/src/resources/safeopenglimagehelper.h b/src/resources/safeopenglimagehelper.h index 14de03913..74e90ad39 100644 --- a/src/resources/safeopenglimagehelper.h +++ b/src/resources/safeopenglimagehelper.h @@ -26,7 +26,7 @@ #include "localconsts.h" #include "main.h" -#ifdef USE_OPENGL +#if defined(USE_OPENGL) && !defined(ANDROID) #ifndef GL_TEXTURE_RECTANGLE_ARB #define GL_TEXTURE_RECTANGLE_ARB 0x84F5 @@ -155,5 +155,5 @@ class SafeOpenGLImageHelper final : public ImageHelper static bool mUseTextureSampler; }; -#endif +#endif // defined(USE_OPENGL) && !defined(ANDROID) #endif // RESOURCES_SAFEOPENGLIMAGEHELPER_H -- cgit v1.2.3-60-g2f50