diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-12-13 14:04:23 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-12-13 14:04:23 +0000 |
commit | 9f1482501348b36ef51b5eacfb6ddd62f83b814c (patch) | |
tree | 2bd2754edec9f752e6a45a282f29fb67c027c272 /indra | |
parent | 6199cecd8bd40e9929f1863fcfa8220ccf9fdf3b (diff) |
SL-731 - diagnostic display cleanup for DebugAnimatedObjects
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llcontrolavatar.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llcontrolavatar.cpp b/indra/newview/llcontrolavatar.cpp index 9b7118d9cb..2df06caa23 100644 --- a/indra/newview/llcontrolavatar.cpp +++ b/indra/newview/llcontrolavatar.cpp @@ -287,6 +287,7 @@ void LLControlAvatar::updateDebugText() addDebugText(llformat("types %s lods %s", type_string.c_str(), lod_string.c_str())); addDebugText(llformat("tris %d verts %d", total_tris, total_verts)); addDebugText(llformat("pxarea %s", LLStringOps::getReadableNumber(getPixelArea()).c_str())); +#if 0 std::string region_name = "no region"; if (mRootVolp->getRegion()) { @@ -300,10 +301,7 @@ void LLControlAvatar::updateDebugText() addDebugText(llformat("region %x %s skel %x %s", mRootVolp->getRegion(), region_name.c_str(), getRegion(), skel_region_name.c_str())); - //addDebugText(llformat("anim time %.1f (step %f factor %f)", - // mMotionController.getAnimTime(), - // mMotionController.getTimeStep(), - // mMotionController.getTimeFactor())); +#endif } LLVOAvatar::updateDebugText(); |