Creation de la base du glitcher

This commit is contained in:
2026-04-20 19:00:08 +02:00
parent c10ce7e8d7
commit f1229866d1
9 changed files with 368 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
attribute vec4 aVertexPosition;
attribute vec2 aTextureCoord;
varying highp vec2 vTextureCoord;
void main() {
gl_Position = aVertexPosition;
vTextureCoord = aTextureCoord;
}