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

View File

@@ -1,8 +1,8 @@
uniform sampler2D u_texture;
varying vec2 v_texCoord;
varying vec2 v_texCoords;
void main(){
gl_FragColor = texture2D(u_texture, v_texCoord);
gl_FragColor = texture2D(u_texture, v_texCoords);
}