salmon-wallpaper/assets/gui_transparent.fragment
2013-02-10 15:24:11 +00:00

11 lines
201 B
Plaintext

precision lowp float;
uniform sampler2D Texture;
varying vec2 texCoord;
void main()
{
vec4 texColor = texture2D(Texture,texCoord).rgba;
gl_FragColor = vec4(texColor.rgb, texColor.a);
}