1
0
Fork 0
fgdata/Shaders/default.frag
timoore 30f844c961 fixes to terrain shader
Handle emission and light model ambient value.

Test if shininess is 0 to avoid pow(0, 0), which is undefined.
2009-07-19 18:54:10 +00:00

31 lines
914 B
C++

// -*-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;
vec4 color = ambient + gl_FrontMaterial.emission;
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);
if (gl_FrontMaterial.shininess > 0.0)
color += gl_FrontMaterial.specular * gl_LightSource[0].specular
* pow(NdotHV, gl_FrontMaterial.shininess);
}
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);
}