This commit is contained in:
2024-06-18 22:15:07 +02:00
parent 420d3366d1
commit 34dff8b51d
5 changed files with 136 additions and 82 deletions

View File

@@ -0,0 +1,7 @@
precision mediump float;
attribute vec2 a_position;
void main() {
gl_Position = vec4(a_position, 0.0, 1.0);
}