summaryrefslogtreecommitdiff
path: root/include/llmr/shader/linejoin_shader.hpp
blob: 82ec3b59aaa16394c86ef30d0f75e019b2c83576 (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
37
#ifndef LLMR_SHADER_SHADER_LINEJOIN
#define LLMR_SHADER_SHADER_LINEJOIN

#include <llmr/shader/shader.hpp>

namespace llmr {

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

    void bind(char *offset);

    void setColor(const std::array<float, 4>& color);
    void setWorld(const std::array<float, 2>& world);
    void setLineWidth(const std::array<float, 2>& linewidth);
    void setSize(float size);

private:
    int32_t a_pos = -1;

    std::array<float, 4> color = {{}};
    int32_t u_color = -1;

    std::array<float, 2> world = {{}};
    int32_t u_world = -1;

    std::array<float, 2> linewidth = {{}};
    int32_t u_linewidth = -1;

    float size = 0;
    int32_t u_size = -1;
};

}

#endif