New generation

This commit is contained in:
Anuken
2019-04-11 16:41:46 -04:00
parent 5783b61631
commit df51078858
39 changed files with 4659 additions and 3951 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifdef GL_ES
precision mediump float;
precision mediump int;
#endif
uniform sampler2D u_texture;
varying vec4 v_color;
varying vec2 v_texCoord;
void main(){
vec4 color = texture2D(u_texture, v_texCoord.xy);
gl_FragColor = vec4(0.0, 0.0, 0.0, 1.0 - color.r);
}