what done?

This commit is contained in:
=
2016-09-27 15:43:48 +02:00
parent 9d0401496f
commit 8218977825
1443 changed files with 93549 additions and 0 deletions

View File

@ -0,0 +1,13 @@
precision mediump float;
uniform sampler2D texture;
uniform vec3 color;
varying vec2 pass_TexCoords;
void main() {
gl_FragColor.a = texture2D(texture, pass_TexCoords).a;
gl_FragColor.rgb = color;
}