c2b18a0a1c
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14789 178a84e3-b1eb-0310-8ba1-8eac791a3b58
14 lines
273 B
GLSL
14 lines
273 B
GLSL
#version 130
|
|
uniform float far;
|
|
uniform float objectid;
|
|
uniform sampler2D tex;
|
|
|
|
noperspective in vec3 nor;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = texture2D(tex, gl_TexCoord[0].st);
|
|
gl_FragData[1] = vec4(0.5 * normalize(nor) + 0.5, gl_FragCoord.z);
|
|
gl_FragData[2] = vec4(0.);
|
|
}
|