diff options
| author | Graham Linden <graham@lindenlab.com> | 2019-06-03 10:22:43 -0700 | 
|---|---|---|
| committer | Graham Linden <graham@lindenlab.com> | 2019-06-03 10:22:43 -0700 | 
| commit | 9d73d103bc137a9de5ccf550b9ceaf61c419179a (patch) | |
| tree | 2fc603dcb52df70e1b9d0ad9283e0c6e8e73b1a0 /indra/newview/app_settings/shaders/class2 | |
| parent | bb214c30c3c35881d250ae3e299fd095ded5197c (diff) | |
SL-11238, SL-11337
Tweak application of ambient in deferred soften light for class1/2
Diffstat (limited to 'indra/newview/app_settings/shaders/class2')
| -rw-r--r-- | indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl b/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl index 9492141b49..343e5c8ef5 100644 --- a/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl +++ b/indra/newview/app_settings/shaders/class2/deferred/softenLightF.glsl @@ -120,6 +120,7 @@ void main()  #if !defined(AMBIENT_KILL)          color.rgb = amblit * 0.5; +        color.rgb = pow(color.rgb, vec3(1.0/1.1));          color.rgb *= ambient;  #endif | 
