summaryrefslogtreecommitdiff
path: root/text_rendering/glyph.vert
blob: ebee1b5c329f21b1929c5812af88db33a19b371a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#version 330 core

/* combine position and texture coordinates into vec4 */
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;
}