im nauseous

This commit is contained in:
2026-07-11 16:44:48 -04:00
parent 0117bcfc3a
commit c651c6f10b
57 changed files with 23922 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#version 330 core
layout (location = 0) in vec3 aPos;
uniform mat4 lightSpaceMatrix;
uniform mat4 modl;
void main()
{
gl_Position = lightSpaceMatrix * modl * vec4(aPos, 1.0);
}