10 lines
186 B
GLSL
Executable file
10 lines
186 B
GLSL
Executable file
#version 330 core
|
|
layout (location = 0) in vec3 aPos;
|
|
|
|
uniform mat4 lightSpaceMatrix;
|
|
uniform mat4 model;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = lightSpaceMatrix * model * vec4(aPos, 1.0);
|
|
} |