From 876bf0687a6e2b6b5dd491b65dad587c688aa56d Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Tue, 24 May 2016 17:30:54 +0300 Subject: [core] Added PixelZoom, RasterPos to GL config --- src/mbgl/gl/gl_config.cpp | 5 +++++ src/mbgl/gl/gl_config.hpp | 12 ++++++++++++ 2 files changed, 17 insertions(+) (limited to 'src') 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 diff --git a/src/mbgl/gl/gl_config.hpp b/src/mbgl/gl/gl_config.hpp index 8ec191daf7..62dfbcadc0 100644 --- a/src/mbgl/gl/gl_config.hpp +++ b/src/mbgl/gl/gl_config.hpp @@ -56,6 +56,10 @@ public: program.reset(); lineWidth.reset(); activeTexture.reset(); +#ifndef GL_ES_VERSION_2_0 + pixelZoom.reset(); + rasterPos.reset(); +#endif // GL_ES_VERSION_2_0 } void setDirty() { @@ -76,6 +80,10 @@ public: program.setDirty(); lineWidth.setDirty(); activeTexture.setDirty(); +#ifndef GL_ES_VERSION_2_0 + pixelZoom.setDirty(); + rasterPos.setDirty(); +#endif // GL_ES_VERSION_2_0 } Value stencilFunc; @@ -95,6 +103,10 @@ public: Value program; Value lineWidth; Value activeTexture; +#ifndef GL_ES_VERSION_2_0 + Value pixelZoom; + Value rasterPos; +#endif // GL_ES_VERSION_2_0 }; } // namespace gl -- cgit v1.2.1