diff options
author | Dave Parks <davep@lindenlab.com> | 2012-01-19 11:10:22 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-01-19 11:10:22 -0600 |
commit | f42c3ff51abf4bd33888765630f5491f6d2014b0 (patch) | |
tree | 33d1dfdd919cdf3bb6a6724074d7e263783025fe /indra/newview/llviewerwindow.cpp | |
parent | 852700fbfb6fd751a61f295f5f77afe1e2db38ed (diff) |
SH-2885 Add mesh requests pending/processing line to "Show Render Info"
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index bf698e02d2..0534246559 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -613,7 +613,9 @@ public: addText(xpos, ypos, llformat("%d/%d Mesh HTTP Requests/Retries", LLMeshRepository::sHTTPRequestCount, LLMeshRepository::sHTTPRetryCount)); - + ypos += y_inc; + + addText(xpos, ypos, llformat("%d/%d Mesh LOD Pending/Processing", LLMeshRepository::sLODPending, LLMeshRepository::sLODProcessing)); ypos += y_inc; addText(xpos, ypos, llformat("%.3f/%.3f MB Mesh Cache Read/Write ", LLMeshRepository::sCacheBytesRead/(1024.f*1024.f), LLMeshRepository::sCacheBytesWritten/(1024.f*1024.f))); |