diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-09-23 16:48:49 -0400 |
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-09-23 16:48:49 -0400 |
| commit | 029642b2bc3a0bc0bec45af5df5d1e0b1b928b91 (patch) | |
| tree | 065985fcb981af2691693231fd39c24cbb538958 /indra/newview/llviewertexlayer.cpp | |
| parent | a91b7353b67d3076c87b41097335848364906f7b (diff) | |
SH-3455 WIP - post-SSA cleanup, including removal of mUseServerBakes and related methods
Diffstat (limited to 'indra/newview/llviewertexlayer.cpp')
| -rwxr-xr-x | indra/newview/llviewertexlayer.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llviewertexlayer.cpp b/indra/newview/llviewertexlayer.cpp index 67aa105863..ad29a6bd8e 100755 --- a/indra/newview/llviewertexlayer.cpp +++ b/indra/newview/llviewertexlayer.cpp @@ -341,22 +341,20 @@ const LLViewerTexLayerSetBuffer* LLViewerTexLayerSet::getViewerComposite() const } -// SUNSHINE CLEANUP - this used to have a bunch of upload related stuff, doesn't really serve a purpose now. +// SUNSHINE CLEANUP - this used to have a bunch of upload related stuff, doesn't really serve much purpose now. const std::string LLViewerTexLayerSetBuffer::dumpTextureInfo() const { if (!isAgentAvatarValid()) return ""; const BOOL is_high_res = TRUE; const U32 num_low_res = 0; - const U32 upload_time = 0; const std::string local_texture_info = gAgentAvatarp->debugDumpLocalTextureDataInfo(getViewerTexLayerSet()); std::string status = "DONE "; - std::string text = llformat("[%s] [HiRes:%d LoRes:%d] [Elapsed:%d] %s", + std::string text = llformat("[%s] [HiRes:%d LoRes:%d] %s", status.c_str(), is_high_res, num_low_res, - upload_time, local_texture_info.c_str()); return text; } |
