summaryrefslogtreecommitdiffstats
path: root/src/engine/shaders/vertexShaderSelection
blob: 7008266335e91f63498919b0296b4856861177cf (plain)
1
2
3
4
5
attribute highp vec3 vertexPosition_mdl;
uniform highp mat4 MVP;
void main() {
    gl_Position = MVP * vec4(vertexPosition_mdl, 1.0);
}