summaryrefslogtreecommitdiff
path: root/include/mbgl/shader/outline_shader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/shader/outline_shader.hpp')
-rw-r--r--include/mbgl/shader/outline_shader.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/mbgl/shader/outline_shader.hpp b/include/mbgl/shader/outline_shader.hpp
deleted file mode 100644
index f3e8175fd7..0000000000
--- a/include/mbgl/shader/outline_shader.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef MBGL_SHADER_SHADER_OUTLINE
-#define MBGL_SHADER_SHADER_OUTLINE
-
-#include <mbgl/shader/shader.hpp>
-#include <mbgl/shader/uniform.hpp>
-
-namespace mbgl {
-
-class OutlineShader : public Shader {
-public:
- OutlineShader();
-
- void bind(char *offset);
-
- UniformMatrix<4> u_matrix = {"u_matrix", *this};
- Uniform<std::array<float, 4>> u_color = {"u_color", *this};
- Uniform<std::array<float, 2>> u_world = {"u_world", *this};
-
-private:
- int32_t a_pos = -1;
-};
-
-}
-
-#endif