GRK-2023/shaders/shader_depth.vert
Aleksander Burkowski 9552610ca8 Fixed shadows
2023-01-24 13:59:45 +01:00

13 lines
312 B
GLSL

#version 330 core
layout(location = 0) in vec3 vertexPosition;
layout(location = 1) in vec3 vertexNormal;
layout(location = 2) in vec2 vertexTexCoord;
uniform mat4 viewProjectionMatrix;
uniform mat4 modelMatrix;
void main()
{
gl_Position = viewProjectionMatrix * modelMatrix * vec4(vertexPosition, 1.0);
}