1079391fd1
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9311 178a84e3-b1eb-0310-8ba1-8eac791a3b58
8 lines
136 B
GLSL
8 lines
136 B
GLSL
// motion_blur.vert
|
|
|
|
void main()
|
|
{
|
|
gl_TexCoord[0].st = vec2(gl_MultiTexCoord0.s, 1.0-gl_MultiTexCoord0.t);
|
|
gl_Position = gl_Vertex;
|
|
}
|