crystal-of-rhylil/assets/shaders/shader_fragment.txt

14 lines
243 B
Plaintext
Raw Normal View History

2013-01-19 22:25:53 +00:00
precision lowp float;
uniform sampler2D Texture;
uniform float Transparency;
varying vec2 texCoord;
void main()
{
vec4 color = texture2D(Texture, texCoord).rgba;
gl_FragColor = vec4(color.rgb, color.a * Transparency);
}