diff options
author | Dave Parks <davep@lindenlab.com> | 2011-01-18 14:49:14 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-01-18 14:49:14 -0600 |
commit | aeec987f565f916c9919f8cc861a82b4caab9a46 (patch) | |
tree | 3a7c37ee643b4fbc50c4c4e6e7e2555d38b243bc /indra/newview/llspatialpartition.cpp | |
parent | f0d0096cf96fbd2f99b01726020fb5840447c8f6 (diff) |
SH-571 work in progress.
Diffstat (limited to 'indra/newview/llspatialpartition.cpp')
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index 1b5800b8a5..ec9bc86ea0 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -2465,7 +2465,6 @@ void renderOctree(LLSpatialGroup* group) { //render solid object bounding box, color //coded by buffer usage and activity - LLGLDepthTest depth(GL_TRUE, GL_FALSE); gGL.setSceneBlendType(LLRender::BT_ADD_WITH_ALPHA); LLVector4 col; if (group->mBuilt > 0.f) @@ -2557,7 +2556,10 @@ void renderOctree(LLSpatialGroup* group) size.mul(1.01f); size.add(fudge); - drawBox(group->mObjectBounds[0], fudge); + { + LLGLDepthTest depth(GL_TRUE, GL_FALSE); + drawBox(group->mObjectBounds[0], fudge); + } gGL.setSceneBlendType(LLRender::BT_ALPHA); |