initial commit

This commit is contained in:
izenynn
2025-02-17 21:05:45 +01:00
commit 06623aeb64
282 changed files with 113292 additions and 0 deletions

9
data/vertex.glsl Normal file
View File

@@ -0,0 +1,9 @@
uniform mat4 mvp;
attribute vec3 vpos;
attribute vec3 vcolor;
varying vec3 fcolor;
void main() {
gl_Position = mvp * vec4(vpos, 1);
fcolor = vcolor;
}