summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class3
diff options
context:
space:
mode:
authorGraham Linden <graham@lindenlab.com>2019-05-16 14:14:02 -0700
committerGraham Linden <graham@lindenlab.com>2019-05-16 14:14:02 -0700
commitb3c0218a31b9d7dd699cf3944bbcfc35e9adbd49 (patch)
tree862809250383d4246d6cc4eaf3c7336265bbb192 /indra/newview/app_settings/shaders/class3
parentcce6254aec2de6606b4940d961cef6cceb549d61 (diff)
Revert lighting changes for 10856 causing knock-on.
Diffstat (limited to 'indra/newview/app_settings/shaders/class3')
-rw-r--r--indra/newview/app_settings/shaders/class3/lighting/lightV.glsl2
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 2f64ab25cb..48c883d98a 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 * 0.25;
+ c.rgb += atmosAmbient() * color.rgb;
return c;
}