summaryrefslogtreecommitdiff
path: root/in_practice/breakout/shaders/text.vert
blob: aa22caaae77ffa82f127f7f5288b3d51e328a529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#version 330 core

layout(location = 0) in vec4 vertex;

out vert_t {
	vec2 tex_coords;
} vert;

uniform mat4 projection;

void main()
{
	gl_Position = projection * vec4(vertex.xy, 0.0, 1.0);
	vert.tex_coords = vertex.zw;
}