summaryrefslogtreecommitdiff
path: root/src/mbgl/gl
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2019-03-15 14:10:25 +0100
committerKonstantin Käfer <mail@kkaefer.com>2019-03-20 15:40:47 +0100
commit9ee1de575af4ef332ad8812c11d9d63edc94d76e (patch)
tree9d66b990fdf026e0be4431b15fad4e79958e1cba /src/mbgl/gl
parent52cf9a1af385113cee523ce826d7c86c8739e0a2 (diff)
downloadqtlocation-mapboxgl-9ee1de575af4ef332ad8812c11d9d63edc94d76e.tar.gz
[core] expose vertex binding count in gfx::Context
Diffstat (limited to 'src/mbgl/gl')
-rw-r--r--src/mbgl/gl/context.cpp2
-rw-r--r--src/mbgl/gl/context.hpp4
2 files changed, 2 insertions, 4 deletions
diff --git a/src/mbgl/gl/context.cpp b/src/mbgl/gl/context.cpp
index 5193381251..1f780331c2 100644
--- a/src/mbgl/gl/context.cpp
+++ b/src/mbgl/gl/context.cpp
@@ -67,7 +67,7 @@ static_assert(underlying_type(UniformDataType::SamplerCube) == GL_SAMPLER_CUBE,
static_assert(std::is_same<BinaryProgramFormat, GLenum>::value, "OpenGL type mismatch");
Context::Context()
- : gfx::Context(gfx::ContextType::OpenGL), maximumVertexBindingCount([] {
+ : gfx::Context(gfx::ContextType::OpenGL, [] {
GLint value;
MBGL_CHECK_ERROR(glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &value));
return value;
diff --git a/src/mbgl/gl/context.hpp b/src/mbgl/gl/context.hpp
index fe09390cc6..754b29c03e 100644
--- a/src/mbgl/gl/context.hpp
+++ b/src/mbgl/gl/context.hpp
@@ -172,9 +172,7 @@ public:
#endif // MBGL_USE_GLES2
bool supportsHalfFloatTextures = false;
- const uint32_t maximumVertexBindingCount;
- static constexpr const uint32_t minimumRequiredVertexBindingCount = 8;
-
+
private:
State<value::StencilFunc> stencilFunc;
State<value::StencilMask> stencilMask;