Initial commit

This commit is contained in:
jjayers99
2023-06-30 22:30:54 -04:00
commit d9c0a08662
38719 changed files with 1599809 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
attribute vec4 a_position;
attribute vec4 a_color;
attribute vec2 a_texCoord0;
uniform mat4 u_projTrans;
varying vec4 v_color;
varying vec2 v_texCoords;
void main() {
v_color = a_color;
v_texCoords = a_texCoord0;
gl_Position = u_projTrans * a_position;
}