summaryrefslogtreecommitdiff
path: root/include/mbgl/shader/dot_shader.hpp
blob: 2c4176f364e3b044ef5f7f2c58d33067a9e36a4a (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
#ifndef MBGL_SHADER_SHADER_DOT
#define MBGL_SHADER_SHADER_DOT

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

namespace mbgl {

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

    void bind(char *offset);

    UniformMatrix<4>              u_matrix = {"u_matrix", *this};
    Uniform<std::array<float, 4>> u_color  = {"u_color",  *this};
    Uniform<float>                u_size   = {"u_size",   *this};
    Uniform<float>                u_blur   = {"u_blur",   *this};

private:
    int32_t a_pos = -1;
};

}

#endif