f8e17ecffa
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@15026 178a84e3-b1eb-0310-8ba1-8eac791a3b58
14 lines
161 B
GLSL
14 lines
161 B
GLSL
#version 130
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 uv;
|
|
|
|
void main()
|
|
{
|
|
vec4 col = texture2D(tex, uv);
|
|
|
|
col.xyz *= 10.0 * col.a;
|
|
|
|
gl_FragColor = vec4(col.xyz, 1.);
|
|
}
|