summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/raster_shader.hpp
blob: 0e445d5cc2580a858ceb1ea8427f2ae6bd11e2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include <mbgl/shader/shader.hpp>
#include <mbgl/shader/uniform.hpp>

namespace mbgl {

class RasterShader : public Shader {
public:
    RasterShader(gl::GLObjectStore&);

    void bind(GLbyte *offset) final;

    UniformMatrix<4>                u_matrix            = {"u_matrix",            *this};
    Uniform<GLint>                  u_image             = {"u_image",             *this};
    Uniform<GLfloat>                u_opacity           = {"u_opacity",           *this};
    Uniform<GLfloat>                u_buffer            = {"u_buffer",            *this};
    Uniform<GLfloat>                u_brightness_low    = {"u_brightness_low",    *this};
    Uniform<GLfloat>                u_brightness_high   = {"u_brightness_high",   *this};
    Uniform<GLfloat>                u_saturation_factor = {"u_saturation_factor", *this};
    Uniform<GLfloat>                u_contrast_factor   = {"u_contrast_factor",   *this};
    Uniform<std::array<GLfloat, 3>> u_spin_weights      = {"u_spin_weights",      *this};
};

} // namespace mbgl