This commit is contained in:
Daniel Ledda
2025-02-14 23:59:44 +01:00
parent 394aa07bb1
commit f250254ae3
10 changed files with 1505 additions and 3130 deletions

View File

@@ -0,0 +1,10 @@
#version 330 core
out vec4 frag_color;
uniform vec3 color;
in vec2 uv;
void main() {
frag_color = vec4(color, 0.0);
};