summaryrefslogtreecommitdiff
path: root/src/mbgl/programs/heatmap_texture_program.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/programs/heatmap_texture_program.hpp')
-rw-r--r--src/mbgl/programs/heatmap_texture_program.hpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mbgl/programs/heatmap_texture_program.hpp b/src/mbgl/programs/heatmap_texture_program.hpp
index e193c09180..a1d3835821 100644
--- a/src/mbgl/programs/heatmap_texture_program.hpp
+++ b/src/mbgl/programs/heatmap_texture_program.hpp
@@ -3,16 +3,13 @@
#include <mbgl/programs/program.hpp>
#include <mbgl/programs/attributes.hpp>
#include <mbgl/programs/uniforms.hpp>
+#include <mbgl/programs/textures.hpp>
#include <mbgl/shaders/heatmap_texture.hpp>
#include <mbgl/style/properties.hpp>
#include <mbgl/util/geometry.hpp>
namespace mbgl {
-namespace uniforms {
-MBGL_DEFINE_UNIFORM_SCALAR(uint32_t, u_color_ramp);
-} // namespace uniforms
-
class HeatmapTextureProgram : public Program<
shaders::heatmap_texture,
gfx::Triangle,
@@ -20,10 +17,10 @@ class HeatmapTextureProgram : public Program<
TypeList<
uniforms::u_matrix,
uniforms::u_world,
- uniforms::u_image,
- uniforms::u_color_ramp,
uniforms::u_opacity>,
- TypeList<>,
+ TypeList<
+ textures::u_image,
+ textures::u_color_ramp>,
style::Properties<>> {
public:
using Program::Program;