diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-15 19:20:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-15 19:20:43 +0300 |
commit | fc03df9053fa92f6482779f8e67e699cdc5536c1 (patch) | |
tree | db34f3582067d6c37a4b1f12a9a9be1af137f89f | |
parent | 5490b25e6cb99bfea3d4234c90d717575855eaf8 (diff) | |
download | plus-fc03df9053fa92f6482779f8e67e699cdc5536c1.tar.gz plus-fc03df9053fa92f6482779f8e67e699cdc5536c1.tar.bz2 plus-fc03df9053fa92f6482779f8e67e699cdc5536c1.tar.xz plus-fc03df9053fa92f6482779f8e67e699cdc5536c1.zip |
Fix compilation in nacl.
-rw-r--r-- | src/resources/openglimagehelper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/resources/openglimagehelper.cpp b/src/resources/openglimagehelper.cpp index ebb4f27a0..49f28d596 100644 --- a/src/resources/openglimagehelper.cpp +++ b/src/resources/openglimagehelper.cpp @@ -32,6 +32,9 @@ #include "render/mobileopengl2graphics.h" #include "render/mobileopenglgraphics.h" #include "render/modernopenglgraphics.h" +#ifdef __native_client__ +#include "render/naclglfunctions.h" +#endif #include "render/normalopenglgraphics.h" #include "render/safeopenglgraphics.h" |