#1831 Fix for redundantly rebuilding bounding boxes forever (#1832)

master
Dave Parks 2024-06-21 17:00:45 -05:00 committed by GitHub
parent c13eba105f
commit 08f2236736
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -3676,7 +3676,7 @@ bool LLViewerObject::updateLOD()
bool LLViewerObject::updateGeometry(LLDrawable *drawable)
{
return false;
return true;
}
void LLViewerObject::updateGL()

View File

@ -2039,6 +2039,7 @@ bool LLVOVolume::updateGeometry(LLDrawable *drawable)
if (mDrawable->isState(LLDrawable::REBUILD_RIGGED))
{
LL_PROFILE_ZONE_NAMED_CATEGORY_VOLUME("rebuild rigged");
updateRiggedVolume(false);
genBBoxes(false);
mDrawable->clearState(LLDrawable::REBUILD_RIGGED);