stk-code_catmod/data/shaders/bloomblend.frag
2014-01-19 19:31:00 +01:00

15 lines
176 B
GLSL

#version 130
uniform sampler2D tex;
in vec2 uv;
out vec4 FragColor;
void main()
{
vec4 col = texture(tex, uv);
col.xyz *= 10.0 * col.a;
FragColor = vec4(col.xyz, 1.);
}