blob: 20948b1e468d07d6a6bd402c09cdf9a5623cde59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file atmosphericsV.glsl
*
* $LicenseInfo:firstyear=2005&license=viewerlgpl$
* $/LicenseInfo$
*/
#version 120
void setPositionEye(vec3 v);
void calcAtmospherics(vec3 inPositionEye)
{
/* stub function for fallback compatibility on class1 hardware */
setPositionEye(inPositionEye);
}
|