initial commit for coom in opengl

This commit is contained in:
2026-02-25 21:52:48 -05:00
commit 328f839da8
1692 changed files with 304900 additions and 0 deletions

6
vertex.glsl Normal file
View File

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