initial commit

This commit is contained in:
2026-08-26 17:32:51 +02:00
commit 527e79cef3
22 changed files with 2853 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#version 460
// OUT
in vec2 vUV;
out vec4 fragColor;
uniform sampler2D iTex0;
void main() {
fragColor = texture(iTex0, vUV);
}