diff options
author | voidpointer <none@none> | 2012-10-18 15:34:43 -0700 |
---|---|---|
committer | voidpointer <none@none> | 2012-10-18 15:34:43 -0700 |
commit | 88fb47bf84b4e995ca36632fc9154cb5a3763def (patch) | |
tree | ac984df2807dd321508eb2838b2386a215691b59 /indra/newview/llspatialpartition.h | |
parent | 48b2dbcd65e72994054b9e525c0e45e346a981fb (diff) | |
parent | 9cc1dfd4e6f3859e690da578adde057ec9a82e18 (diff) |
merge
Diffstat (limited to 'indra/newview/llspatialpartition.h')
-rw-r--r-- | indra/newview/llspatialpartition.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llspatialpartition.h b/indra/newview/llspatialpartition.h index d3252fe26a..b1706d9d35 100644 --- a/indra/newview/llspatialpartition.h +++ b/indra/newview/llspatialpartition.h @@ -350,6 +350,8 @@ public: element_list& getData() { return mOctreeNode->getData(); } element_iter getDataBegin() { return mOctreeNode->getDataBegin(); } element_iter getDataEnd() { return mOctreeNode->getDataEnd(); } + bool hasElement(LLDrawable* drawablep) { return std::find(mOctreeNode->getDataBegin(), mOctreeNode->getDataEnd(), drawablep) != mOctreeNode->getDataEnd(); } + U32 getElementCount() const { return mOctreeNode->getElementCount(); } bool isEmpty() const { return mOctreeNode->isEmpty(); } |