diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-06-11 22:10:33 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-06-11 22:10:33 +0100 |
commit | 6bf8fb58dee419cf2a15d6bdbd5acbcbd65dc033 (patch) | |
tree | c987bd7368821e59045405814c56b2de5543bace /indra/newview/llvovolume.cpp | |
parent | 887638c4d274d067f44d97128b34fde837ab69a9 (diff) |
SL-915 - timers, ignore zero weights, log joint boxes in dumpXML output
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-rw-r--r-- | indra/newview/llvovolume.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 70c4efb5b8..3387f718df 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -3591,8 +3591,11 @@ void LLVOVolume::afterReparent() } //---------------------------------------------------------------------------- +static LLTrace::BlockTimerStatHandle FTM_VOVOL_RIGGING_INFO("VOVol Rigging Info"); + void LLVOVolume::updateRiggingInfo() { + LL_RECORD_BLOCK_TIME(FTM_VOVOL_RIGGING_INFO); if (isRiggedMesh()) { const LLMeshSkinInfo* skin = getSkinInfo(); |