diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2013-02-28 22:49:05 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2013-02-28 22:49:05 -0700 |
commit | bd60fdbe44d9f996686d31cf48a3f2ca664dd301 (patch) | |
tree | 45ef35b52504e9b9788ba19725b38b10257a296c /indra/newview/llvocache.h | |
parent | 8144fa95701122f24c36b8ae2a51a5ce720614a6 (diff) |
for SH-3824: interesting: Ensure viewer can handle object updates from entire region gracefully
Diffstat (limited to 'indra/newview/llvocache.h')
-rw-r--r-- | indra/newview/llvocache.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llvocache.h b/indra/newview/llvocache.h index c631e12739..7c1706e650 100644 --- a/indra/newview/llvocache.h +++ b/indra/newview/llvocache.h @@ -116,6 +116,10 @@ public: S32 getNumOfChildren() {return mChildrenList.size();} void clearChildrenList() {mChildrenList.clear();} + //called from processing object update message + void setBoundingInfo(const LLVector3& pos, const LLVector3& scale); + void updateBoundingInfo(LLVOCacheEntry* parent); + public: typedef std::map<U32, LLPointer<LLVOCacheEntry> > vocache_entry_map_t; typedef std::set<LLVOCacheEntry*> vocache_entry_set_t; |