summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/icon_shader.hpp
blob: 155b9addca6984872ce1a24cd5326086729c5d11 (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
26
27
28
29
30
31
32
33
34
35
36
#ifndef MBGL_SHADER_SHADER_ICON
#define MBGL_SHADER_SHADER_ICON

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

namespace mbgl {

class IconShader : public Shader {
public:
    IconShader();

    void bind(char *offset);

    UniformMatrix<4>              u_matrix      = {"u_matrix",      *this};
    UniformMatrix<4>              u_exmatrix    = {"u_exmatrix",    *this};
    Uniform<float>                u_angle       = {"u_angle",       *this};
    Uniform<float>                u_zoom        = {"u_zoom",        *this};
    Uniform<float>                u_flip        = {"u_flip",        *this};
    Uniform<float>                u_fadedist    = {"u_fadedist",    *this};
    Uniform<float>                u_minfadezoom = {"u_minfadezoom", *this};
    Uniform<float>                u_maxfadezoom = {"u_maxfadezoom", *this};
    Uniform<float>                u_fadezoom    = {"u_fadezoom",    *this};
    Uniform<float>                u_opacity     = {"u_opacity",     *this};
    Uniform<std::array<float, 2>> u_texsize     = {"u_texsize",     *this};

private:
    int32_t a_pos = -1;
    int32_t a_offset = -1;
    int32_t a_data1 = -1;
    int32_t a_data2 = -1;
};

}

#endif