diff options
author | Graham Linden <graham@lindenlab.com> | 2019-06-18 13:41:53 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-06-18 13:41:53 -0700 |
commit | 782ddfdb48e1bdf6995783c11342eed2de4a30bb (patch) | |
tree | 7e6a8690153bd568bbba5e2ecacac860a9bcf255 /indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl | |
parent | 4abb342e9564a7740475c3abe60cd62ae5bbc34d (diff) |
SL-11041
Revert fix for SL_11406 causing regression of SL-11041
Diffstat (limited to 'indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl b/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl index 53cdce4cb1..23ed3fb3d9 100644 --- a/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl +++ b/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl @@ -119,8 +119,8 @@ void main() vec3 sun_contrib = min(scol, final_da) * sunlit; #if !defined(AMBIENT_KILL) - color.rgb = amblit * 2.0; - color.rgb *= ambient * 0.5; + color.rgb = amblit; + color.rgb *= ambient; #endif vec3 post_ambient = color.rgb; |