work on moving shader loading/compilation to a separate file

This commit is contained in:
2025-08-17 00:32:43 -05:00
parent 06d99cf87e
commit 47564bb3cf
12 changed files with 199 additions and 72 deletions

7
src/shaders/fragment.fs Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
out vec4 frag_color;
void main() {
frag_color = vec4(1.0f, 0.5f, 0.2f, 1.0f);
}