summaryrefslogtreecommitdiff
path: root/indra/newview/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r--indra/newview/pipeline.cpp6
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);