diff options
| author | Loren Shih <seraph@lindenlab.com> | 2011-01-14 15:16:17 -0500 | 
|---|---|---|
| committer | Loren Shih <seraph@lindenlab.com> | 2011-01-14 15:16:17 -0500 | 
| commit | 5364bb5a11aaae33127db3866f7a9bba6404773d (patch) | |
| tree | b207e7c723d431669d65aa6753759d58eb86a80d /indra/newview | |
| parent | d82da834fa4026f2912406e9d39196ec7287f785 (diff) | |
Mesh-development work in progress
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llviewerobject.cpp | 30 | ||||
| -rw-r--r-- | indra/newview/llvocache.cpp | 1 | 
2 files changed, 20 insertions, 11 deletions
| diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index f380d4b183..bf550e9c70 100644 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -5600,6 +5600,26 @@ void LLViewerObject::setAttachmentItemID(const LLUUID &id)  	mAttachmentItemID = id;  } +EObjectUpdateType LLViewerObject::getLastUpdateType() const +{ +	return mLastUpdateType; +} + +void LLViewerObject::setLastUpdateType(EObjectUpdateType last_update_type) +{ +	mLastUpdateType = last_update_type; +} + +BOOL LLViewerObject::getLastUpdateCached() const +{ +	return mLastUpdateCached; +} + +void LLViewerObject::setLastUpdateCached(BOOL last_update_cached) +{ +	mLastUpdateCached = last_update_cached; +} +  const LLUUID &LLViewerObject::extractAttachmentItemID()  {  	LLUUID item_id = LLUUID::null; @@ -5616,16 +5636,6 @@ const LLUUID &LLViewerObject::extractAttachmentItemID()  	return getAttachmentItemID();  } -EObjectUpdateType LLViewerObject::getLastUpdateType() const -{ -	return mLastUpdateType; -} - -void LLViewerObject::setLastUpdateType(EObjectUpdateType last_update_type) -{ -	mLastUpdateType = last_update_type; -} -  //virtual  LLVOAvatar* LLViewerObject::getAvatar() const  { diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp index 2188b41a06..10d6b009ae 100644 --- a/indra/newview/llvocache.cpp +++ b/indra/newview/llvocache.cpp @@ -648,7 +648,6 @@ void LLVOCache::writeToCache(U64 handle, const LLUUID& id, const LLVOCacheEntry:  	HeaderEntryInfo* entry;
  	handle_entry_map_t::iterator iter = mHandleEntryMap.find(handle) ;
 -	U32 num_handle_entries = mHandleEntryMap.size();
  	if(iter == mHandleEntryMap.end()) //new entry
  	{
  		if(num_handle_entries >= mCacheSize)
 | 
