This commit is contained in:
2025-12-09 21:46:46 +01:00
parent 19ec048d72
commit edb1aadf04
8 changed files with 315 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
attribute vec2 position;
varying vec2 vUv;
void main() {
vUv = position * 0.5 + 0.5;
gl_Position = vec4(position, 0.0, 1.0);
}