summaryrefslogtreecommitdiffstats
path: root/dev/a6-harold/shaders/stroke3d.vert
blob: d333c4f19f00b993f0ed998f917c0e243bcb53ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#version 330

uniform mat4 modelViewMatrix;
uniform mat4 projectionMatrix;

layout(location = 0) in vec3 vertex;

void main() {
    gl_Position = projectionMatrix * modelViewMatrix * vec4(vertex,1);
}