blob: f1a0af21afe7315a6dc9175b35df48ab4b5c8410 (
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
|
/**
* @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;
}
|