This commit is contained in:
RochesterX
2026-01-07 14:06:26 -05:00
commit 8b181b34e6
40 changed files with 2014836 additions and 0 deletions

7
src/vertex.glsl Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
layout (location = 0) in vec3 aPos;
void main()
{
gl_position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}