summaryrefslogtreecommitdiffstats
path: root/src/default.vs
blob: 457a5283939682269eb1eff08c05ca43c97c2777 (plain)
1
2
3
4
5
6
7
8
attribute vec3 aVertexPosition;

uniform mat4 uVMatrix;
uniform mat4 uPMatrix;

void main(void) {
	gl_Position = uPMatrix * uVMatrix * vec4(aVertexPosition, 1.0);
}