summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/uniform.cpp
blob: 24f179baf17e50ea229a28067cd1e05323ea8de8 (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
38
39
40
41
42
43
44
45
46
47
#include <mbgl/shader/uniform.hpp>

namespace mbgl {

template <>
void Uniform<float>::bind(const float& t) {
    glUniform1f(location, t);
}

template <>
void Uniform<int32_t>::bind(const int32_t& t) {
    glUniform1i(location, t);
}

template <>
void Uniform<std::array<float, 2>>::bind(const std::array<float, 2>& t) {
    glUniform2fv(location, 1, t.data());
}

template <>
void Uniform<std::array<float, 3>>::bind(const std::array<float, 3>& t) {
    glUniform3fv(location, 1, t.data());
}

template <>
void Uniform<std::array<float, 4>>::bind(const std::array<float, 4>& t) {
    glUniform4fv(location, 1, t.data());
}

template <>
void UniformMatrix<2>::bind(const std::array<float, 4>& t) {
    glUniformMatrix2fv(location, 1, GL_FALSE, t.data());
}

template <>
void UniformMatrix<3>::bind(const std::array<float, 9>& t) {
    glUniformMatrix3fv(location, 1, GL_FALSE, t.data());
}

template <>
void UniformMatrix<4>::bind(const std::array<float, 16>& t) {
    glUniformMatrix4fv(location, 1, GL_FALSE, t.data());
}

// Add more as needed.

}