diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-12 23:48:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-13 00:36:16 +0300 |
commit | be4ed51b29f77de23f6ffbf61df65554c6a394ad (patch) | |
tree | b1afa1ff261cddc1f03d512cbfc3702f7cebd61c /src/render/mobileopenglgraphics.h | |
parent | ff3c80151bd6ddbf0b963dd28c25dc1c47fd4347 (diff) | |
download | plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.tar.gz plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.tar.bz2 plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.tar.xz plus-be4ed51b29f77de23f6ffbf61df65554c6a394ad.zip |
Not build unsupported render backends on nacl.
Diffstat (limited to 'src/render/mobileopenglgraphics.h')
-rw-r--r-- | src/render/mobileopenglgraphics.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/mobileopenglgraphics.h b/src/render/mobileopenglgraphics.h index 5011bae9e..ff722671e 100644 --- a/src/render/mobileopenglgraphics.h +++ b/src/render/mobileopenglgraphics.h @@ -23,7 +23,7 @@ #ifndef RENDER_MOBILEOPENGLGRAPHICS_H #define RENDER_MOBILEOPENGLGRAPHICS_H -#ifdef USE_OPENGL +#if defined(USE_OPENGL) && !defined(__native_client__) #include "localconsts.h" #include "render/graphics.h" @@ -96,6 +96,6 @@ class MobileOpenGLGraphics final : public Graphics #endif FBOInfo mFbo; }; -#endif +#endif // defined(USE_OPENGL) && !defined(__native_client__) #endif // RENDER_MOBILEOPENGLGRAPHICS_H |