summaryrefslogtreecommitdiff
path: root/src/mbgl/programs/debug_program.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/programs/debug_program.hpp')
-rw-r--r--src/mbgl/programs/debug_program.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mbgl/programs/debug_program.hpp b/src/mbgl/programs/debug_program.hpp
index 7fdfc84cc0..61125b55bf 100644
--- a/src/mbgl/programs/debug_program.hpp
+++ b/src/mbgl/programs/debug_program.hpp
@@ -3,14 +3,13 @@
#include <mbgl/programs/program.hpp>
#include <mbgl/programs/attributes.hpp>
#include <mbgl/programs/uniforms.hpp>
-#include <mbgl/shaders/debug.hpp>
#include <mbgl/style/properties.hpp>
namespace mbgl {
class DebugProgram : public Program<
- shaders::debug,
- gfx::Line,
+ DebugProgram,
+ gfx::PrimitiveType::Line,
TypeList<
attributes::a_pos>,
TypeList<
@@ -24,6 +23,6 @@ public:
};
using DebugLayoutVertex = DebugProgram::LayoutVertex;
-using DebugAttributes = DebugProgram::Attributes;
+using DebugAttributes = DebugProgram::AttributeList;
} // namespace mbgl