diff options
author | Oz Linden <oz@lindenlab.com> | 2016-03-07 12:41:11 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-03-07 12:41:11 -0500 |
commit | 5822fb00b605d4f4ddd01e887b40d04b67e162a9 (patch) | |
tree | 0aa733a2357c99383f18ed34d2fb2ad4ad0caa24 /indra/newview/llviewerwindow.cpp | |
parent | c7ebeb842010c4a814978f63c464e1546bd6a9be (diff) | |
parent | 346ee6595d395a92a1445441467971510e6f4b6d (diff) |
merge DRTVWR-398 build cleanup fixes
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index f96c4b7bf0..8d05114146 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -677,14 +677,13 @@ public: { LLVOAvatar* avatar = av_iter->second; - avatar->calculateUpdateRenderCost(); // Make sure the numbers are up-to-date + avatar->calculateUpdateRenderComplexity(); // Make sure the numbers are up-to-date trunc_name = utf8str_truncate(avatar->getFullname(), 16); - addText(xpos, ypos, llformat("%s : rez %d, weight %d, bytes %d area %.2f", + addText(xpos, ypos, llformat("%s : %s, complexity %d, area %.2f", trunc_name.c_str(), - avatar->getRezzedStatus(), + LLVOAvatar::rezStatusToString(avatar->getRezzedStatus()).c_str(), avatar->getVisualComplexity(), - avatar->getAttachmentGeometryBytes(), avatar->getAttachmentSurfaceArea())); ypos += y_inc; av_iter++; |