small refactor

This commit is contained in:
2026-02-28 17:57:24 +01:00
parent 3f71603961
commit ce05dd504a
37 changed files with 4393 additions and 3681 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;
}