73f9779324
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14738 178a84e3-b1eb-0310-8ba1-8eac791a3b58
16 lines
374 B
GLSL
16 lines
374 B
GLSL
#version 130
|
|
|
|
noperspective out vec3 nor;
|
|
noperspective out vec3 eyenor;
|
|
noperspective out vec3 viewpos;
|
|
|
|
void main() {
|
|
nor = gl_NormalMatrix * gl_Normal;
|
|
eyenor = gl_NormalMatrix * gl_Normal;
|
|
viewpos = -normalize((gl_ModelViewMatrix * gl_Vertex).xyz);
|
|
|
|
gl_TexCoord[0] = gl_TextureMatrix[0] * gl_MultiTexCoord0;
|
|
gl_Position = ftransform();
|
|
gl_FrontColor = gl_Color;
|
|
}
|