blob: 8a2c2a71862fb7402c313f95af0e03248262e8c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @file atmosphericVarsF.glsl
*
* $LicenseInfo:firstyear=2007&license=viewerlgpl$
* $/LicenseInfo$
*/
#version 120
varying vec3 vary_PositionEye;
vec3 getPositionEye()
{
return vary_PositionEye;
}
|