diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-02-22 16:11:06 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-02-22 16:11:06 +0000 |
commit | 5bc057e0abd8c38f5d1b9363879ec8f43dc89e38 (patch) | |
tree | 61c959fa3a9e64b5ffc8b7d959386f30a2448037 /indra/newview | |
parent | 3f9b3e01b9d7ea3a6662adb55027839840198b4c (diff) |
MAINT-8264 - test for performance/behavior change
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llvovolume.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index a07e3f8be1..9e7a6a410a 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -1517,7 +1517,12 @@ BOOL LLVOVolume::genBBoxes(BOOL force_global) if (getRiggedVolume()) { - updateRiggedVolume(TRUE); + // MAINT-8264 - better to use the existing call in calling + // func LLVOVolume::updateGeometry() if we can detect when + // updates needed, set REBUILD_RIGGED accordingly. + + // Without the flag, this will remove unused rigged volumes, which we are not currently very aggressive about. + updateRiggedVolume(); } LLVolume* volume = mRiggedVolume; |