22 lines
272 B
GLSL
22 lines
272 B
GLSL
/**
|
|
* @file atmosphericVarsV.glsl
|
|
*
|
|
* Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
|
|
* $License$
|
|
*/
|
|
|
|
#version 120
|
|
|
|
varying vec3 vary_PositionEye;
|
|
|
|
|
|
vec3 getPositionEye()
|
|
{
|
|
return vary_PositionEye;
|
|
}
|
|
|
|
void setPositionEye(vec3 v)
|
|
{
|
|
vary_PositionEye = v;
|
|
}
|