1
0
Fork 0
fgdata/Shaders/default.frag

45 lines
1.4 KiB
GLSL
Raw Normal View History

2009-07-15 22:49:36 +00:00
// -*-C++-*-
varying vec4 diffuse, constantColor;
2009-07-15 22:49:36 +00:00
varying vec3 normal, lightDir, halfVector;
varying float fogCoord, alpha;
2009-07-15 22:49:36 +00:00
uniform sampler2D texture;
float luminance(vec3 color)
{
return dot(vec3(0.212671, 0.715160, 0.072169), color);
}
2009-07-15 22:49:36 +00:00
void main()
{
vec3 n, halfV;
float NdotL, NdotHV, fogFactor;
vec4 color = constantColor;
2009-07-15 22:49:36 +00:00
vec4 texel;
vec4 fragColor;
vec4 specular = vec4(0.0);
2009-07-15 22:49:36 +00:00
n = normalize(normal);
if (!gl_FrontFacing)
n = -n;
2009-07-15 22:49:36 +00:00
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)
specular.rgb = (gl_FrontMaterial.specular.rgb
* gl_LightSource[0].specular.rgb
* pow(NdotHV, gl_FrontMaterial.shininess));
2009-07-15 22:49:36 +00:00
}
color.a = alpha;
// This shouldn't be necessary, but our lighting becomes very
// saturated. Clamping the color before modulating by the texture
// is closer to what the OpenGL fixed function pipeline does.
color = clamp(color, 0.0, 1.0);
2009-07-15 22:49:36 +00:00
texel = texture2D(texture, gl_TexCoord[0].st);
fragColor = color * texel + specular;
2009-07-15 22:49:36 +00:00
fogFactor = exp(-gl_Fog.density * gl_Fog.density * fogCoord * fogCoord);
gl_FragColor = mix(gl_Fog.color, fragColor, fogFactor);
}