summaryrefslogtreecommitdiff
path: root/advanced_lighting/3.1.shadow_mapping/shaders/debug_quad.vert
blob: 57176085bc0d5ec3acba1de3306b634e8aa5ebb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 330 core
layout(location = 0) in vec3 apos;
layout(location = 1) in vec2 atex_coords;

out vec2 tex_coords;

uniform mat4 model;

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