summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/windlight/atmosphericsHelpersV.glsl
blob: 874f2b48432418b6ecf7b7348e9b8304f4a73914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/** 
 * @file atmosphericsHelpersV.glsl 
 *
 * $LicenseInfo:firstyear=2005&license=viewerlgpl$
 * $/LicenseInfo$
 */

vec3 atmosAmbient(vec3 light)
{
	return gl_LightModel.ambient.rgb + light;
}

vec3 atmosAffectDirectionalLight(float lightIntensity)
{
	return gl_LightSource[0].diffuse.rgb * lightIntensity;
}

vec3 atmosGetDiffuseSunlightColor()
{
	return gl_LightSource[0].diffuse.rgb;
}

vec3 scaleDownLight(vec3 light)
{
	/* stub function for fallback compatibility on class1 hardware */
	return light;
}

vec3 scaleUpLight(vec3 light)
{
	/* stub function for fallback compatibility on class1 hardware */
	return light;
}