summaryrefslogtreecommitdiff
path: root/advanced_lighting/7.bloom/shaders/final.vert
blob: f6a4e381ba60bca5ddfdb344753836617a1ab188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 330 core

layout (location = 0) in vec3 position;
layout (location = 2) in vec2 tex_coords;

out VS_OUT {
	vec2 tex_coords;
} vs_out;

void main()
{
	vs_out.tex_coords = tex_coords;
	gl_Position = vec4(position, 1.0);
}