Files
LearningOpenGL/point_shadow_depth.geom
onTheZero 4bf6b02255 GameObjects
Began to add GameObjects, starting with the player.
2025-08-13 00:59:03 -04:00

26 lines
599 B
GLSL

#version 330 core
layout (triangles) in;
layout (triangle_strip, max_vertices=18) out;
uniform mat4 shadowMatrices[6];
out vec4 FragPosition; // FragPos from GS (output per emitvertex)
void main()
{
for(int face = 0; face < 6; ++face)
{
gl_Layer = face; // built-in variable that specifies to which face we render.
for(int i = 0; i < 3; ++i) // for each triangle's vertices
{
FragPosition = gl_in[i].gl_Position;
gl_Position = shadowMatrices[face] * FragPosition;
EmitVertex();
}
EndPrimitive();
}
}