f23f537620
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10491 178a84e3-b1eb-0310-8ba1-8eac791a3b58
10 lines
116 B
GLSL
10 lines
116 B
GLSL
|
|
|
|
uniform sampler2D main_texture;
|
|
varying vec2 uv;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(main_texture, uv);
|
|
}
|