diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-06-02 11:54:47 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-06-02 11:54:47 -0500 |
commit | 8359c618fca10f4920c4f2572863b2426dbceabc (patch) | |
tree | 1638d28ff23bb9f78fec64c606d5fd156125ed1d /indra | |
parent | b0540f8189d28da66c143c5de961deaba7a86f17 (diff) |
DRTVWR-559 Add missed "should override" check (thanks, Rye!)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/pipeline.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 852845edf4..a41bed9186 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6751,9 +6751,11 @@ void LLPipeline::generateExposure(LLRenderTarget* src, LLRenderTarget* dst) { static LLStaticHashedString noiseVec("noiseVec"); static LLStaticHashedString dynamic_exposure_params("dynamic_exposure_params"); static LLCachedControl<F32> dynamic_exposure_coefficient(gSavedSettings, "RenderDynamicExposureCoefficient", 0.175f); + static LLCachedControl<bool> should_auto_adjust(gSavedSettings, "RenderSkyAutoAdjustLegacy", true); + LLSettingsSky::ptr_t sky = LLEnvironment::instance().getCurrentSky(); - F32 probe_ambiance = LLEnvironment::instance().getCurrentSky()->getReflectionProbeAmbiance(); + F32 probe_ambiance = LLEnvironment::instance().getCurrentSky()->getReflectionProbeAmbiance(should_auto_adjust); F32 exp_min = 1.f; F32 exp_max = 1.f; |