summaryrefslogtreecommitdiff
path: root/advanced_lighting/3.1.shadow_mapping/shaders/color.vert
blob: 6aa621ef954c4f5306b996bb9b0f7a6d7888e20a (plain)
1
2
3
4
5
6
7
8
9
10
11
#version 330 core
layout(location = 0) in vec3 apos;

uniform mat4 proj;
uniform mat4 view;
uniform mat4 model;

void main(void)
{
	gl_Position = proj * view * model * vec4(apos, 1.0);
}