974deca5e1
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11846 178a84e3-b1eb-0310-8ba1-8eac791a3b58
10 lines
171 B
GLSL
10 lines
171 B
GLSL
|
|
uniform sampler2D myTexture;
|
|
|
|
void main (void)
|
|
{
|
|
vec4 col = texture2D(myTexture, vec2(gl_TexCoord[0]));
|
|
col *= gl_Color;
|
|
gl_FragColor = col * 4.0;
|
|
}
|