2009-07-15 22:49:36 +00:00
|
|
|
// -*-C++-*-
|
|
|
|
|
|
|
|
varying vec4 diffuse, ambient;
|
|
|
|
varying vec3 normal, lightDir, halfVector;
|
|
|
|
varying float fogCoord;
|
|
|
|
|
|
|
|
uniform sampler2D texture;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
vec3 n, halfV;
|
|
|
|
float NdotL, NdotHV, fogFactor;
|
2009-07-19 18:54:10 +00:00
|
|
|
vec4 color = ambient + gl_FrontMaterial.emission;
|
2009-07-15 22:49:36 +00:00
|
|
|
vec4 texel;
|
|
|
|
vec4 fragColor;
|
|
|
|
|
|
|
|
n = normalize(normal);
|
|
|
|
NdotL = max(dot(n, lightDir), 0.0);
|
|
|
|
if (NdotL > 0.0) {
|
|
|
|
color += diffuse * NdotL;
|
|
|
|
halfV = normalize(halfVector);
|
|
|
|
NdotHV = max(dot(n, halfV), 0.0);
|
2009-07-19 18:54:10 +00:00
|
|
|
if (gl_FrontMaterial.shininess > 0.0)
|
|
|
|
color += gl_FrontMaterial.specular * gl_LightSource[0].specular
|
|
|
|
* pow(NdotHV, gl_FrontMaterial.shininess);
|
2009-07-15 22:49:36 +00:00
|
|
|
}
|
|
|
|
texel = texture2D(texture, gl_TexCoord[0].st);
|
|
|
|
fragColor = color * texel;
|
|
|
|
fogFactor = exp(-gl_Fog.density * gl_Fog.density * fogCoord * fogCoord);
|
|
|
|
gl_FragColor = mix(gl_Fog.color, fragColor, fogFactor);
|
|
|
|
}
|