diff options
author | Graham Linden <graham@lindenlab.com> | 2019-06-06 16:32:55 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-06-06 16:32:55 -0700 |
commit | 49eae58bd0d1eceda18a3997454beb15a5e27cbd (patch) | |
tree | 830541ce9a203b2ead0240a88d3c441c240c67ff /indra/newview/app_settings/shaders/class3 | |
parent | 158a0104c1d00e56b46fec31e650cd6942cac735 (diff) |
SL-10969
More tweaking ambient light.
Diffstat (limited to 'indra/newview/app_settings/shaders/class3')
-rw-r--r-- | indra/newview/app_settings/shaders/class3/lighting/lightV.glsl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl b/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl index 6918ac3b8c..cba87a1db7 100644 --- a/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl +++ b/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl @@ -35,9 +35,9 @@ vec4 calcLighting(vec3 pos, vec3 norm, vec4 color) vec4 c = sumLights(pos, norm, color); #if !defined(AMBIENT_KILL) - c.rgb += atmosAmbient() * color.rgb * 0.5 * getAmbientClamp(); + c.rgb += atmosAmbient() * color.rgb * 2.0 * getAmbientClamp(); #endif - - return c; + + return c; } |