diff options
author | Oz Linden <oz@lindenlab.com> | 2015-02-04 08:45:49 -0800 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2015-02-04 08:45:49 -0800 |
commit | 53fb7f9998fceadc84ee3aefec12806ce87f7772 (patch) | |
tree | d6b573858cda30f1191c45de1366af974233957d /indra/newview/llviewermenu.cpp | |
parent | e79b1dfb418ad090c016eaa4d6b1388bde47c274 (diff) | |
parent | 059b561dd2fbbc115d815a41d58b8bb76f603074 (diff) |
merge storm-2082 changes
Diffstat (limited to 'indra/newview/llviewermenu.cpp')
-rwxr-xr-x | indra/newview/llviewermenu.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 3abeba4b43..79c353f30c 100755 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -978,10 +978,6 @@ U32 info_display_from_string(std::string info_display) { return LLPipeline::RENDER_DEBUG_TEXTURE_PRIORITY; } - else if ("shame" == info_display) - { - return LLPipeline::RENDER_DEBUG_SHAME; - } else if ("texture area" == info_display) { return LLPipeline::RENDER_DEBUG_TEXTURE_AREA; @@ -1010,9 +1006,9 @@ U32 info_display_from_string(std::string info_display) { return LLPipeline::RENDER_DEBUG_COMPOSITION; } - else if ("attachment bytes" == info_display) + else if ("avatardrawinfo" == info_display) { - return LLPipeline::RENDER_DEBUG_ATTACHMENT_BYTES; + return (LLPipeline::RENDER_DEBUG_AVATAR_DRAW_INFO); } else if ("glow" == info_display) { @@ -1048,6 +1044,7 @@ U32 info_display_from_string(std::string info_display) } else { + LL_WARNS() << "unrecognized feature name '" << info_display << "'" << LL_ENDL; return 0; } }; |