summaryrefslogtreecommitdiff
path: root/src/shaders/default.vert
blob: 637c7c1c2f2bca30f74f15632def822757893d9f (plain)
1
2
3
4
5
6
7
8
9
#version 330 core
layout(location = 0) in vec3 apos;

uniform mat4 model;

void main(void)
{
	gl_Position = model*vec4(apos, 1.0);
}