protot/data/shaders/vs_shadowmap.vert

15 lines
243 B
GLSL
Raw Normal View History

#version 150 core
in vec4 inCoord;
in vec4 inColor;
uniform mat4 uModelMatrix;
2018-03-15 11:01:55 +01:00
uniform mat4 uLightSpaceMatrix;
smooth out vec4 ioFragColor;
void main() {
2018-03-15 11:01:55 +01:00
gl_Position = uLightSpaceMatrix * uModelMatrix * inCoord;
ioFragColor = inColor;
}