summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/shaders/label.vert
blob: b4debe53148296056f923b7377166a1b986fdf63 (plain)
1
2
3
4
5
6
7
8
9
10
11
uniform highp mat4 MVP;

attribute highp vec3 vertexPosition_mdl;
attribute highp vec2 vertexUV;

varying highp vec2 UV;

void main() {
    gl_Position = MVP * vec4(vertexPosition_mdl, 1.0);
    UV = vertexUV;
}