blob: 32d5ed5db2f91ef74b01d87dfcc80bb511aaae2b (
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
35
36
37
38
39
40
41
  | 
/**
 * @file atmosphericsHelpersV.glsl
 *
 * Copyright (c) 2005-$CurrentYear$, Linden Research, Inc.
 * $License$
 */
// Output variables
vec3 getSunlitColor();
vec3 getAmblitColor();
vec3 getAdditiveColor();
vec3 getAtmosAttenuation();
vec3 getPositionEye();
uniform float scene_light_strength;
vec3 atmosAmbient(vec3 light)
{
	return getAmblitColor() + light / 2.0;
}
vec3 atmosAffectDirectionalLight(float lightIntensity)
{
	return getSunlitColor() * lightIntensity;
}
vec3 atmosGetDiffuseSunlightColor()
{
	return getSunlitColor();
}
vec3 scaleDownLight(vec3 light)
{
	return (light / scene_light_strength );
}
vec3 scaleUpLight(vec3 light)
{
	return (light * scene_light_strength);
}
  |