diff options
author | Dave Parks <davep@lindenlab.com> | 2022-12-15 17:52:31 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-12-15 17:52:31 -0600 |
commit | 6f7eeecdb33c14cb3044118a9d6e2eea900af55e (patch) | |
tree | 5e043739a21b18cfdc04ee43b375e257c1630b9b /indra | |
parent | aa76fbb0b2ea93d1b7908faa66a40a1a8fc29113 (diff) |
SL-18782 Fix fir assert when enabling SSR
Diffstat (limited to 'indra')
-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 7bc819d553..633c86ad28 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -7590,7 +7590,7 @@ void LLPipeline::renderFinalize() LLGLDepthTest depth(GL_TRUE, GL_FALSE, GL_ALWAYS); stop_glerror(); - mDeferredVB->drawArrays(LLRender::TRIANGLES, 0, 3); + mScreenTriangleVB->drawArrays(LLRender::TRIANGLES, 0, 3); stop_glerror(); } |