diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-05-18 18:41:53 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-05-18 18:41:53 -0500 |
commit | 39820e4750d5b9f661ef74ee9868df9e471c5f36 (patch) | |
tree | 3caaaef8e35a02d5aa740b0bf1896d814dfe28b8 /indra/newview/pipeline.cpp | |
parent | cae8aa6ecf231302653091162aa0e13e06c25696 (diff) |
DRTVWR-559 Fix for shower curtain not opening smoothly. Incidental decruft.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 40112421cd..715e2a2326 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2457,9 +2457,9 @@ void LLPipeline::doOcclusion(LLCamera& camera) } } -bool LLPipeline::updateDrawableGeom(LLDrawable* drawablep, bool priority) +bool LLPipeline::updateDrawableGeom(LLDrawable* drawablep) { - bool update_complete = drawablep->updateGeometry(priority); + bool update_complete = drawablep->updateGeometry(); if (update_complete && assertInitialized()) { drawablep->setState(LLDrawable::BUILT); @@ -2611,7 +2611,7 @@ void LLPipeline::updateGeom(F32 max_dtime) drawablep->clearState(LLDrawable::FOR_UNLOAD); } - if (updateDrawableGeom(drawablep, TRUE)) + if (updateDrawableGeom(drawablep)) { drawablep->clearState(LLDrawable::IN_REBUILD_Q); mBuildQ1.erase(curiter); |