diff options
author | Dave Parks <davep@lindenlab.com> | 2010-04-08 20:42:55 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-04-08 20:42:55 -0500 |
commit | 164cbaba13514350b76456d707d4fbef35446e39 (patch) | |
tree | 4e0875c99ed00215c6a8eeafd2c1f9da1edc2f39 /indra/newview/llspatialpartition.cpp | |
parent | f8de237fe626b1133413a152882bbea8ef0552a8 (diff) |
Total fix for shadows going wonky at altitude.
Diffstat (limited to 'indra/newview/llspatialpartition.cpp')
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index cf1e3bf186..c229657ded 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -1924,11 +1924,8 @@ public: return; } - if (mRes == 2) - { - //fully in, don't traverse further (won't effect extents - } - else if (mRes && group->isState(LLSpatialGroup::SKIP_FRUSTUM_CHECK)) + if ((mRes && group->isState(LLSpatialGroup::SKIP_FRUSTUM_CHECK)) || + mRes == 2) { //don't need to do frustum check LLSpatialGroup::OctreeTraveler::traverse(n); } |