diff options
author | Dave Parks <davep@lindenlab.com> | 2022-08-02 12:34:06 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-08-02 12:34:06 -0500 |
commit | cf4b14f69108ef3079338c49cc7156056eedfce3 (patch) | |
tree | c72cc6f2d1bb8ac4ac0065a41c28aa2731195065 /indra/newview/pipeline.cpp | |
parent | eec96559d41fd74a4fa1137336941a6c20036eba (diff) |
SL-17706 Remove ability to disable deferred rendering and default PBR to on for mid and higher.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 6f65b3c5dd..b23c1fe741 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -850,7 +850,7 @@ bool LLPipeline::allocateScreenBuffer(U32 resX, U32 resY, U32 samples) gCubeSnapshot = TRUE; mRT = &mAuxillaryRT; U32 res = LL_REFLECTION_PROBE_RESOLUTION * 2; - allocateScreenBuffer(res, res, 0); + allocateScreenBuffer(res, res, samples); mRT = &mMainRT; gCubeSnapshot = FALSE; } |