diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-10-11 20:43:56 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-10-11 20:43:56 +0100 |
commit | b920893fa4be1b5e61e938bda79147a9c5522726 (patch) | |
tree | 0c48c55730a673493591467f524eacd60bd99a68 | |
parent | 3747e3dcc17148efa9ba2cd85faf68bef4f8dd27 (diff) |
removed unused member variables that make xcode 10 unhappy
-rw-r--r-- | indra/newview/llcontrolavatar.cpp | 4 | ||||
-rw-r--r-- | indra/newview/llmeshrepository.h | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/indra/newview/llcontrolavatar.cpp b/indra/newview/llcontrolavatar.cpp index ed63414849..1eeeaa42ea 100644 --- a/indra/newview/llcontrolavatar.cpp +++ b/indra/newview/llcontrolavatar.cpp @@ -124,6 +124,10 @@ void LLControlAvatar::getNewConstraintFixups(LLVector3& new_pos_fixup, F32& new_ { LL_DEBUGS("ConstraintFix") << getFullname() << " pos fix, offset_dist " << offset_dist << " pos fixup " << new_pos_fixup << " was " << mPositionConstraintFixup << LL_ENDL; + LL_DEBUGS("ConstraintFix") << "vol_pos " << vol_pos << LL_ENDL; + LL_DEBUGS("ConstraintFix") << "extents " << extents[0] << " " << extents[1] << LL_ENDL; + LL_DEBUGS("ConstraintFix") << "unshift_extents " << unshift_extents[0] << " " << unshift_extents[1] << LL_ENDL; + } } if (box_size/mScaleConstraintFixup > max_legal_size) diff --git a/indra/newview/llmeshrepository.h b/indra/newview/llmeshrepository.h index 19d4ff617e..bba0c9f2cb 100644 --- a/indra/newview/llmeshrepository.h +++ b/indra/newview/llmeshrepository.h @@ -535,13 +535,6 @@ private: // Estimated triangle counts derived from the LOD sizes. LOD 0=lowest, 3=highest. std::vector<F32> mEstTrisByLOD; - - // Estimated triangle counts for the largest LOD. Typically this - // is also the "high" LOD, but not necessarily. - F32 mEstTrisMax; - - // Sum of all LOD sizes. - S32 mSizeTotal; }; class LLMeshRepository |