summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/painter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/renderer/painter.hpp')
-rw-r--r--src/mbgl/renderer/painter.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mbgl/renderer/painter.hpp b/src/mbgl/renderer/painter.hpp
index c093f38acd..8f63388461 100644
--- a/src/mbgl/renderer/painter.hpp
+++ b/src/mbgl/renderer/painter.hpp
@@ -162,10 +162,6 @@ private:
void setDepthSublayer(int n);
public:
- void useProgram(GLuint program);
- void lineWidth(GLfloat lineWidth);
-
-public:
mat4 projMatrix;
mat4 nativeMatrix;
mat4 extrudeMatrix;
@@ -194,9 +190,6 @@ private:
gl::Config config;
- GLuint gl_program = 0;
- GLfloat gl_lineWidth = 0;
- std::array<uint16_t, 2> gl_viewport = {{ 0, 0 }};
RenderPass pass = RenderPass::Opaque;
Color background = {{ 0, 0, 0, 0 }};
@@ -259,14 +252,6 @@ public:
};
VertexArrayObject tileBorderArray;
-
- // Framebuffer management
- std::vector<GLuint> fbos;
- std::vector<GLuint> fbos_color;
- GLuint fbo_depth_stencil;
- int fbo_level = -1;
- bool fbo_depth_stencil_valid = false;
-
};
}