Testing doc script

This commit is contained in:
Anuken
2020-06-14 18:41:42 -04:00
parent 126b54b981
commit 5f79040faa
37 changed files with 59 additions and 30 deletions
+2 -2
View File
@@ -5,12 +5,12 @@ attribute vec2 a_texCoord0;
attribute vec4 a_color;
varying vec4 v_color;
varying vec2 v_texCoord;
varying vec2 v_texCoords;
uniform vec2 u_viewportInverse;
void main(){
gl_Position = u_projTrans * a_position;
v_texCoord = a_texCoord0;
v_texCoords = a_texCoord0;
v_color = a_color;
}