stk-code_catmod/data/shaders/bubble.frag
auria f23f537620 Update overworld with 'force fields' to guard the entrance to challenges as discussed. I <3 my new shader\!
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10491 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2011-12-26 16:46:29 +00:00

10 lines
116 B
GLSL

uniform sampler2D main_texture;
varying vec2 uv;
void main()
{
gl_FragColor = texture2D(main_texture, uv);
}