summaryrefslogtreecommitdiff
path: root/advanced_opengl/10.antialiasing/shaders/screen.vs
blob: 1f233ee064cc2e2362c84679cac5519e3b9915c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#version 330 core
layout(location = 0) in vec3 apos;
layout(location = 1) in vec2 atex_coords;

out vec2 tex_coords;

void
main(void)
{
    gl_Position = vec4(apos, 1.0);
    tex_coords = atex_coords;
}