diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-09-19 16:14:59 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-09-19 16:14:59 -0400 |
commit | 48bc05e93ffbd29b3e49c288577bda1712a88392 (patch) | |
tree | eb5b82a25c12c88b599e373c75c0cff605f56578 /indra/newview/lltextureview.cpp | |
parent | d58e7cfbfcec163345e87c0c5e5f74d01075246b (diff) |
SH-3455 WIP - removing bake upload code
Diffstat (limited to 'indra/newview/lltextureview.cpp')
-rwxr-xr-x | indra/newview/lltextureview.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/indra/newview/lltextureview.cpp b/indra/newview/lltextureview.cpp index e80136b286..dea1c6c1b2 100755 --- a/indra/newview/lltextureview.cpp +++ b/indra/newview/lltextureview.cpp @@ -431,15 +431,7 @@ void LLAvatarTexBar::draw() if (!layerset_buffer) continue; LLColor4 text_color = LLColor4::white; - - if (layerset_buffer->uploadNeeded()) - { - text_color = LLColor4::red; - } - if (layerset_buffer->uploadInProgress()) - { - text_color = LLColor4::magenta; - } + std::string text = layerset_buffer->dumpTextureInfo(); LLFontGL::getFontMonospace()->renderUTF8(text, 0, l_offset, v_offset + line_height*line_num, text_color, LLFontGL::LEFT, LLFontGL::TOP); //, LLFontGL::BOLD, LLFontGL::DROP_SHADOW_SOFT); |