3eb6c034d0
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@12730 178a84e3-b1eb-0310-8ba1-8eac791a3b58
14 lines
354 B
GLSL
14 lines
354 B
GLSL
uniform float angle;
|
|
varying vec4 coord;
|
|
|
|
|
|
void main()
|
|
{
|
|
gl_TexCoord[0] = gl_MultiTexCoord0;
|
|
vec4 vertexPosition = ftransform(); //gl_ModelViewMatrix * gl_Vertex;
|
|
vertexPosition += vec4(1,1,0,0) * 0.25 * gl_Color.r * sin(angle);
|
|
gl_Position = vertexPosition;
|
|
gl_FrontColor = vec4(1,1,1,1);
|
|
gl_BackColor = vec4(1,1,1,1);
|
|
coord = vertexPosition;
|
|
} |