docs: sample project

This commit is contained in:
2025-11-10 23:00:45 +01:00
parent fb5e5fcf38
commit 570c902909
7 changed files with 277 additions and 9 deletions
+10
View File
@@ -0,0 +1,10 @@
#version 460
in vec2 vUV;
out vec4 fragColor;
uniform sampler2D iTex0;
void main() {
fragColor = texture(iTex0, vUV);
}