blob: 75929bc6090ba10fc69e3f2765c70a946e7f6ac0 (
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
|
/**
* @file transportF.glsl
*
* $LicenseInfo:firstyear=2005&license=viewerlgpl$
* $/LicenseInfo$
*/
vec3 atmosTransport(vec3 light)
{
/* stub function for fallback compatibility on class1 hardware */
return light;
}
vec3 fullbrightAtmosTransport(vec3 light)
{
/* stub function for fallback compatibility on class1 hardware */
return light;
}
vec3 fullbrightShinyAtmosTransport(vec3 light)
{
/* stub function for fallback compatibility on class1 hardware */
return light;
}
|