summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/environment/waterFogF.glsl
blob: a34cf23790d5bf57abdfa2c1ecaa64cc5d1ee8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * @file waterFogF.glsl
 *
 * $LicenseInfo:firstyear=2007&license=viewerlgpl$
 * $/LicenseInfo$
 */
 
#version 120

vec4 applyWaterFog(vec4 color)
{
	// GL_EXP2 Fog
	//float fog = exp(-gl_Fog.density * gl_Fog.density * gl_FogFragCoord * gl_FogFragCoord);
	// GL_EXP Fog
	// float fog = exp(-gl_Fog.density * gl_FogFragCoord);
	// GL_LINEAR Fog
	float fog = (gl_Fog.end - gl_FogFragCoord) * gl_Fog.scale;
	fog = clamp(fog, 0.0, 1.0);
	color.rgb = mix(gl_Fog.color.rgb, color.rgb, fog);
	return color;
}