Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'drape/glconstants.cpp')
-rw-r--r--drape/glconstants.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/drape/glconstants.cpp b/drape/glconstants.cpp
index e934c7be71..0c3c0f5724 100644
--- a/drape/glconstants.cpp
+++ b/drape/glconstants.cpp
@@ -25,6 +25,14 @@
#define GL_LUMINANCE8_ALPHA4_OES 0x8043
#endif
+#if !defined(GL_LUMINANCE)
+ #define GL_LUMINANCE 0x1909
+#endif
+
+#if !defined(GL_LUMINANCE_ALPHA)
+ #define GL_LUMINANCE_ALPHA 0x190A
+#endif
+
#if defined(GL_WRITE_ONLY)
#define WRITE_ONLY_DEF GL_WRITE_ONLY
#elif defined(GL_WRITE_ONLY_OES)
@@ -125,6 +133,7 @@ const glConst GLAlpha8 = GL_ALPHA8_OES;
const glConst GLLuminance8 = GL_LUMINANCE8_OES;
const glConst GLAlphaLuminance8 = GL_LUMINANCE8_ALPHA8_OES;
const glConst GLAlphaLuminance4 = GL_LUMINANCE8_ALPHA4_OES;
+const glConst GLRed = GL_RED;
const glConst GL8BitOnChannel = GL_UNSIGNED_BYTE;
const glConst GL4BitOnChannel = GL_UNSIGNED_SHORT_4_4_4_4;