summaryrefslogtreecommitdiff
path: root/advanced_lighting/6.hdr/shaders/hdr.vert
blob: 4f15c725ea1adf1a020e23add5ef4f7b3563f52e (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 = 2) in vec2 atexc;

out VSOUT {
	vec2	texc;
} vsout;

void main(void)
{
	vsout.texc = atexc;

	gl_Position = vec4(apos, 1.0);
}