GameObjects
Began to add GameObjects, starting with the player.
This commit is contained in:
25
point_shadow_depth.geom
Normal file
25
point_shadow_depth.geom
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
|
||||
#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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user