double-hit-balls/assets/frameshader_fragment.txt

12 lines
226 B
Plaintext
Raw Normal View History

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