diff options
author | prep linden <prep@lindenlab.com> | 2011-08-30 09:33:05 -0400 |
---|---|---|
committer | prep linden <prep@lindenlab.com> | 2011-08-30 09:33:05 -0400 |
commit | 6f2820bcd7b7ed06fefeca0e2c34c45ef77e4b62 (patch) | |
tree | 1ba73003f2b299d6ab1a2b968c5d15688be23692 /indra/newview/llspatialpartition.cpp | |
parent | 71ac45a28b238bac4ac0cf43ee85f04589ffa116 (diff) | |
parent | 8cef480b96dc779c5879f74224fb0a185ee550f2 (diff) |
merge
Diffstat (limited to 'indra/newview/llspatialpartition.cpp')
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index 8654d6d635..6c2b71dd0a 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -523,6 +523,11 @@ void LLSpatialGroup::clearDrawMap() mDrawMap.clear(); } +BOOL LLSpatialGroup::isHUDGroup() +{ + return mSpatialPartition && mSpatialPartition->isHUDPartition() ; +} + BOOL LLSpatialGroup::isRecentlyVisible() const { return (LLDrawable::getCurrentFrame() - mVisible[LLViewerCamera::sCurCameraID]) < LLDrawable::getMinVisFrameRange() ; @@ -4269,6 +4274,10 @@ void LLSpatialGroup::drawObjectBox(LLColor4 col) drawBox(mObjectBounds[0], size); } +bool LLSpatialPartition::isHUDPartition() +{ + return mPartitionType == LLViewerRegion::PARTITION_HUD ; +} BOOL LLSpatialPartition::isVisible(const LLVector3& v) { |