diff options
author | Jonathan "Geenz" Goodman <geenz@lindenlab.com> | 2024-11-28 17:57:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-28 17:57:30 -0500 |
commit | c02baded8464781fcb208676610727e677ac6907 (patch) | |
tree | 84f45af956f6c4fed1c28cdfc9445eb74216cd25 /indra/newview/pipeline.cpp | |
parent | 5ac2adfa280ad589de7530c6d72db09c7788b27f (diff) |
#3170 Fix for tonemapping not working with PBR skies.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 037dfd1d66..1221601c97 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -7150,17 +7150,7 @@ void LLPipeline::tonemap(LLRenderTarget* src, LLRenderTarget* dst) static LLCachedControl<U32> tonemap_type_setting(gSavedSettings, "RenderTonemapType", 0U); shader.uniform1i(tonemap_type, tonemap_type_setting); - - static LLCachedControl<F32> tonemap_mix_setting(gSavedSettings, "RenderTonemapMix", 1.f); - if (psky->canAutoAdjust()) - { - // Legacy skies - shader.uniform1f(tonemap_mix, 0.f); - } - else - { - shader.uniform1f(tonemap_mix, tonemap_mix_setting()); - } + shader.uniform1f(tonemap_mix, psky->getTonemapMix()); mScreenTriangleVB->setBuffer(); mScreenTriangleVB->drawArrays(LLRender::TRIANGLES, 0, 3); |