small refactor

This commit is contained in:
2026-02-28 17:57:24 +01:00
parent 3f71603961
commit 3d7fb570f2
36 changed files with 4248 additions and 3680 deletions

View File

@ -1,8 +1,9 @@
#version 330
uniform vec4 colDiffuse;
in vec4 fragColor;
out vec4 finalColor;
void main() {
finalColor = colDiffuse;
}
// Advanced coloring. CG lecture really paying off now
finalColor = fragColor;
}