diff options
author | Dave Parks <davep@lindenlab.com> | 2012-06-05 12:55:17 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-06-05 12:55:17 -0500 |
commit | 92ee373e45b34d5eb7e403480ae1f579b27c4eb6 (patch) | |
tree | d84a0fb19d07e9ba2f57a52f22e184eb9c655e38 /indra/newview/lldrawable.cpp | |
parent | a78fc68a21d01e54203dd737fece9b47f249ec4c (diff) |
MAINT-646 Factor std::set out of lloctree
Diffstat (limited to 'indra/newview/lldrawable.cpp')
-rw-r--r-- | indra/newview/lldrawable.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/lldrawable.cpp b/indra/newview/lldrawable.cpp index 98246162f0..a42f4fcaa1 100644 --- a/indra/newview/lldrawable.cpp +++ b/indra/newview/lldrawable.cpp @@ -108,6 +108,8 @@ void LLDrawable::init() mGeneration = -1; mBinRadius = 1.f; + mBinIndex = -1; + mSpatialBridge = NULL; } @@ -1099,6 +1101,8 @@ LLSpatialBridge::LLSpatialBridge(LLDrawable* root, BOOL render_by_group, U32 dat mDrawable = root; root->setSpatialBridge(this); + mBinIndex = -1; + mRenderType = mDrawable->mRenderType; mDrawableType = mDrawable->mRenderType; |