diff options
author | Oz Linden <oz@lindenlab.com> | 2012-04-03 11:28:56 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-04-03 11:28:56 -0400 |
commit | fa6add3fcd300b21142e3381f35851b3404ee02a (patch) | |
tree | b61b7264e152b2e356393ed9a7fcc7e73a1c6ba7 /indra/newview/app_settings/shaders/class2/windlight/skyF.glsl | |
parent | caa780e49740e8e9d707ad8ba6a302be8d4d20d9 (diff) | |
parent | 224217dae82ad5f5127c511de6c7237fa81f36bb (diff) |
merge changes for drtvwr-132
Diffstat (limited to 'indra/newview/app_settings/shaders/class2/windlight/skyF.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class2/windlight/skyF.glsl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl b/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl index c9d96b2cf4..e2a2367626 100644 --- a/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl +++ b/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl @@ -24,7 +24,9 @@ */ #ifdef DEFINE_GL_FRAGCOLOR -out vec4 gl_FragColor; +out vec4 frag_color; +#else +#define frag_color gl_FragColor #endif ///////////////////////////////////////////////////////////////////////// @@ -57,7 +59,7 @@ void main() color *= 2.; /// Gamma correct for WL (soft clip effect). - gl_FragColor.rgb = scaleSoftClip(color.rgb); - gl_FragColor.a = 1.0; + frag_color.rgb = scaleSoftClip(color.rgb); + frag_color.a = 1.0; } |