summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/line_shader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/shader/line_shader.hpp')
-rw-r--r--src/mbgl/shader/line_shader.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/mbgl/shader/line_shader.hpp b/src/mbgl/shader/line_shader.hpp
deleted file mode 100644
index 91ae41e95a..0000000000
--- a/src/mbgl/shader/line_shader.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include <mbgl/gl/shader.hpp>
-#include <mbgl/shader/line_uniforms.hpp>
-#include <mbgl/shader/line_attributes.hpp>
-
-namespace mbgl {
-
-class LineShader : public gl::Shader {
-public:
- LineShader(gl::Context&, Defines defines = None);
-
- using AttributesType = LineAttributes;
- using UniformsType = LineColorUniforms;
-
- typename LineAttributes::State attributesState;
- typename LineColorUniforms::State uniformsState;
-};
-
-
-} // namespace mbgl