summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl
diff options
context:
space:
mode:
authorGraham Linden <graham@lindenlab.com>2019-03-22 14:54:40 -0700
committerGraham Linden <graham@lindenlab.com>2019-03-22 14:54:40 -0700
commit9c8cc0037a11861fa0561e8cda01d9ec7c996442 (patch)
treebcba37fb8d63aca2c4816706f43c53874e941332 /indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl
parentb757c932929ce60e035b5d69a351f495a77b9f9d (diff)
Fix class1/2 light sum loops to use light_diffuse[0] for sunlight_color too.
Rearrange ordering of scale down of light in class1 as well.
Diffstat (limited to 'indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl')
-rw-r--r--indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl b/indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl
index c9987ef3b9..36a8a8147b 100644
--- a/indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl
+++ b/indra/newview/app_settings/shaders/class2/lighting/sumLightsV.glsl
@@ -49,7 +49,7 @@ vec4 sumLights(vec3 pos, vec3 norm, vec4 color, vec4 baseLight)
// Add windlight lights
col.rgb += atmosAmbient(baseLight.rgb);
- col.rgb += atmosAffectDirectionalLight(calcDirectionalLight(norm, light_position[0].xyz));
+ col.rgb += light_diffuse[0].rgb * calcDirectionalLight(norm, light_position[0].xyz));
col.rgb = min(col.rgb*color.rgb, 1.0);