summaryrefslogtreecommitdiff
path: root/advanced_lighting/7.bloom/shaders/blur.vert
blob: e4ced248392fa3a1b9bc55af678cc6f25bc8ad49 (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(void)
{
	vs_out.tex_coords = tex_coords;
	gl_Position = vec4(position, 1.0);
}