diff options
author | Dave Parks <davep@lindenlab.com> | 2010-06-04 12:07:55 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-06-04 12:07:55 -0500 |
commit | a8f0e47fd5deee1e45b4126ee43955a7bc68bb5d (patch) | |
tree | a8c0e6eb02a796086a0d52bbb3d4473d4d98772d /indra/newview/llviewermenu.cpp | |
parent | ca1caeb1deedd1b8e59a90223153ca6f05914b95 (diff) |
Normal debug display and fix for bad bump mapping and planar texture coordinates.
Diffstat (limited to 'indra/newview/llviewermenu.cpp')
-rw-r--r-- | indra/newview/llviewermenu.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index b63ef921ac..eb2ee94af3 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -857,6 +857,10 @@ U32 info_display_from_string(std::string info_display) { return LLPipeline::RENDER_DEBUG_BBOXES; } + else if ("normals" == info_display) + { + return LLPipeline::RENDER_DEBUG_NORMALS; + } else if ("points" == info_display) { return LLPipeline::RENDER_DEBUG_POINTS; |