diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-02-07 19:14:00 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-02-07 19:14:00 -0500 |
commit | 99d197d021482ab29ca518d2f2a40462f75fe5a3 (patch) | |
tree | 4771e82b7310f81748bfa87eb1101080bd91ecfa /indra/newview/llappviewer.cpp | |
parent | 0897a291d16dc4002765c5eb4ed9e310ee1ba4a4 (diff) |
SH-3852 WIP - track per-timer stats
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rwxr-xr-x[-rw-r--r--] | indra/newview/llappviewer.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 03b11939a9..2ee325a09e 100644..100755 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3612,6 +3612,12 @@ void LLAppViewer::requestQuit() // Try to send metrics back to the grid metricsSend(!gDisconnected); + + // Try to send last batch of avatar rez metrics. + if (!gDisconnected && isAgentAvatarValid()) + { + gAgentAvatarp->updateAvatarRezMetrics(true); // force a last packet to be sent. + } LLHUDEffectSpiral *effectp = (LLHUDEffectSpiral*)LLHUDManager::getInstance()->createViewerEffect(LLHUDObject::LL_HUD_EFFECT_POINT, TRUE); effectp->setPositionGlobal(gAgent.getPositionGlobal()); |