summaryrefslogtreecommitdiffstats
path: root/src/engine/shaders/vertexShaderDepth
blob: 695212674d7626c463cfccf11347c03f26a0073e (plain)
1
2
3
4
5
6
7
8
attribute highp vec3 vertexPosition_mdl;

uniform highp mat4 MVP;

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