double-hit-balls/assets/shader1fragment.txt

14 lines
226 B
Plaintext
Raw Permalink Normal View History

2013-01-19 21:23:44 +00:00
precision mediump float;
uniform sampler2D Texture;
uniform float Transparency;
varying vec2 texCoord;
void main()
{
vec4 color = texture2D(Texture,texCoord).rgba;
2018-01-05 21:51:05 +00:00
gl_FragColor = vec4(color.rgb, 1.0);
2013-01-19 21:23:44 +00:00
}