first code attempt

This commit is contained in:
2026-04-02 10:33:22 -07:00
parent ad32f18bf5
commit 73a4d5b1da
50 changed files with 4953 additions and 2 deletions

5
shaders/ppi_bearing.vert Normal file
View File

@@ -0,0 +1,5 @@
#version 330 core
layout(location = 0) in vec2 aPos;
void main() {
gl_Position = vec4(aPos, 0.0, 1.0);
}