summaryrefslogtreecommitdiff
path: root/vertex_shader.glsl
blob: d8f18482aa90cd194eba4fd5217f7b09dce4200b (plain)
1
2
3
4
5
6
7
8
9
in vec2 position;
in vec2 texture_coord;

out vec2 frag_texture_coord;

void main() {
	frag_texture_coord = texture_coord;
	gl_Position = vec4(position, 0.0, 1.0);
}