Initial commit

This commit is contained in:
2026-05-14 14:22:07 -08:00
commit 32f6e6c14d
15 changed files with 954 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#version 450
layout(location = 0) out vec4 out_color;
void main() {
out_color = vec4(0.1, 0.8, 1.0, 1.0);
}
+7
View File
@@ -0,0 +1,7 @@
#version 450
layout(location = 0) in vec2 in_position;
void main() {
gl_Position = vec4(in_position, 0.0, 1.0);
}