move shaders to separate directory

This commit is contained in:
2026-02-22 14:18:49 +01:00
parent f06afc210f
commit 7bc1eaae75
3 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,8 @@
#version 330
uniform vec4 colDiffuse;
out vec4 finalColor;
void main() {
finalColor = colDiffuse;
}