Bugfixes / Possibly fixed unit tests

This commit is contained in:
Anuken
2019-02-08 17:05:09 -05:00
parent bb0ee26e4f
commit a87e2a56d2
10 changed files with 30 additions and 72 deletions

View File

@@ -13,5 +13,5 @@ varying vec2 v_texCoord;
void main() {
vec4 color = texture2D(u_texture, v_texCoord.xy);
color = vec4(0.0, 0.0, 0.0, 1.0 - color.r);
gl_FragColor = color * v_color;
gl_FragColor = color;
}