double-hit-balls/assets/frameshader_fragment.txt
shakurov.airat 3f8caf2574 move to AS
2017-01-10 17:43:06 +05:00

12 lines
226 B
Plaintext
Executable File

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);
}