summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/gl_config.cpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-05-24 17:30:54 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-05-24 19:58:24 +0300
commit876bf0687a6e2b6b5dd491b65dad587c688aa56d (patch)
tree6f51fed2150789d124baa70c3c461337bca00965 /src/mbgl/gl/gl_config.cpp
parent9732f02422eb5cd5852d47e888b061aaf6ffe0bd (diff)
downloadqtlocation-mapboxgl-876bf0687a6e2b6b5dd491b65dad587c688aa56d.tar.gz
[core] Added PixelZoom, RasterPos to GL config
Diffstat (limited to 'src/mbgl/gl/gl_config.cpp')
-rw-r--r--src/mbgl/gl/gl_config.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mbgl/gl/gl_config.cpp b/src/mbgl/gl/gl_config.cpp
index ecf987876c..c3c6601e43 100644
--- a/src/mbgl/gl/gl_config.cpp
+++ b/src/mbgl/gl/gl_config.cpp
@@ -21,5 +21,10 @@ const Program::Type Program::Default = 0;
const LineWidth::Type LineWidth::Default = 1;
const ActiveTexture::Type ActiveTexture::Default = GL_TEXTURE0;
+#ifndef GL_ES_VERSION_2_0
+const PixelZoom::Type PixelZoom::Default = { 1, 1 };
+const RasterPos::Type RasterPos::Default = {{ 0, 0, 0, 0 }};
+#endif // GL_ES_VERSION_2_0
+
} // namespace gl
} // namespace mbgl