diff options
| author | Michael Pohoreski <ptolemy@lindenlab.com> | 2021-01-25 22:48:16 +0000 | 
|---|---|---|
| committer | Michael Pohoreski <ptolemy@lindenlab.com> | 2021-01-25 22:48:16 +0000 | 
| commit | f639747fad3c96f2a0ebcff4903ebaaf04fa4fe7 (patch) | |
| tree | 9f5f96be62211ba0467f1ebe2315dcd7156721ba | |
| parent | 95d6e34ad3b77ecc11cf9a01eb14ea60715d1223 (diff) | |
| parent | 1e26adf288f8b4585c0ce8338dd548475613862c (diff) | |
Merged in SL-14707 (pull request #447)
SL-14707: Merge Sovereign Engineer's fix for clouds: Clouds are unusually dim in EEP
Approved-by: Dave Houlton
| -rwxr-xr-x | doc/contributions.txt | 1 | ||||
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/deferred/cloudsV.glsl | 1 | ||||
| -rw-r--r-- | indra/newview/app_settings/shaders/class2/windlight/cloudsV.glsl | 1 | 
3 files changed, 3 insertions, 0 deletions
| diff --git a/doc/contributions.txt b/doc/contributions.txt index c91587d5c3..3e458e9476 100755 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -1354,6 +1354,7 @@ Sovereign Engineer      SL-11079      OPEN-343  	SL-11625 +	SL-14707  SpacedOut Frye  	VWR-34  	VWR-45 diff --git a/indra/newview/app_settings/shaders/class1/deferred/cloudsV.glsl b/indra/newview/app_settings/shaders/class1/deferred/cloudsV.glsl index a132220bef..8e0a001403 100644 --- a/indra/newview/app_settings/shaders/class1/deferred/cloudsV.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/cloudsV.glsl @@ -166,6 +166,7 @@ void main()          (blue_horizon * blue_weight * (sunlight + tmpAmbient) + (haze_horizon * haze_weight) * (sunlight * haze_glow + tmpAmbient));  	// CLOUDS +    sunlight = sunlight_color;  // SL-14707 reset color -- Clouds are unusually dim in EEP      off_axis = 1.0 / max(1e-6, lightnorm.y * 2.);      sunlight *= exp(-light_atten * off_axis); diff --git a/indra/newview/app_settings/shaders/class2/windlight/cloudsV.glsl b/indra/newview/app_settings/shaders/class2/windlight/cloudsV.glsl index b004cc7ddd..97ffa9feef 100644 --- a/indra/newview/app_settings/shaders/class2/windlight/cloudsV.glsl +++ b/indra/newview/app_settings/shaders/class2/windlight/cloudsV.glsl @@ -166,6 +166,7 @@ void main()          (blue_horizon * blue_weight * (sunlight + tmpAmbient) + (haze_horizon * haze_weight) * (sunlight * haze_glow + tmpAmbient));  	// CLOUDS +    sunlight = sunlight_color;  // SL-14707 reset color -- Clouds are unusually dim in EEP      off_axis = 1.0 / max(1e-6, lightnorm.y * 2.);      sunlight *= exp(-light_atten * off_axis); | 
