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

@@ -3,9 +3,9 @@
uniform sampler2D u_texture;
varying vec4 v_color;
varying vec2 v_texCoord;
varying vec2 v_texCoords;
void main(){
vec4 color = texture2D(u_texture, v_texCoord.xy);
vec4 color = texture2D(u_texture, v_texCoords.xy);
gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0 - color.r);
}