diff options
author | Graham Linden <graham@lindenlab.com> | 2019-05-14 07:57:35 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-05-14 07:57:35 -0700 |
commit | a984c5e66acbc0903cfdbd175e01c347bdb59cb7 (patch) | |
tree | b84162668c0c1333b3f1b6cf5ade27d10d6ecff4 /indra/newview/app_settings/shaders/class3/lighting/lightV.glsl | |
parent | 041d92b6bd4212bafd51567a52b4e2147da3132a (diff) | |
parent | b143aa96fcd6d16558464c98bcfd9984f7d29750 (diff) |
Merge
Diffstat (limited to 'indra/newview/app_settings/shaders/class3/lighting/lightV.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class3/lighting/lightV.glsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl b/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl index 48c883d98a..2f64ab25cb 100644 --- a/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl +++ b/indra/newview/app_settings/shaders/class3/lighting/lightV.glsl @@ -32,7 +32,7 @@ vec4 sumLights(vec3 pos, vec3 norm, vec4 color); vec4 calcLighting(vec3 pos, vec3 norm, vec4 color) { vec4 c = sumLights(pos, norm, color); - c.rgb += atmosAmbient() * color.rgb; + c.rgb += atmosAmbient() * color.rgb * 0.25; return c; } |