summaryrefslogtreecommitdiffstats
path: root/fiz/naloga/gl/vertex.glsl
blob: d17b522fa29893e3e0343c1c8b2bd3faf97c44e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#version 330

layout(location = 0) in vec3 vertex_position;

out vec2 UVo;

void main() {
	UVo = vertex_position.xy;
	gl_Position = vec4(vertex_position, 1.0);
}