diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2013-08-28 17:27:28 -0600 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2013-08-28 17:27:28 -0600 |
commit | edd1478cc0ba240d428fc4c35f9c97af7d2ce346 (patch) | |
tree | 8695e3b13212cabca5500a324c5f5da659a92857 /indra/newview/llvocache.cpp | |
parent | 041ab1c46c681de63c934af031c1d1a0b3f5a4da (diff) |
fix for SH-4332: Cacheable object highlights from Render Metadata -> Update Type do not render
Diffstat (limited to 'indra/newview/llvocache.cpp')
-rwxr-xr-x | indra/newview/llvocache.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp index ebde17dcef..dcd1ae391d 100755 --- a/indra/newview/llvocache.cpp +++ b/indra/newview/llvocache.cpp @@ -286,18 +286,6 @@ void LLVOCacheEntry::removeAllChildren() mChildrenList.clear(); } -LLDataPackerBinaryBuffer *LLVOCacheEntry::getDP(U32 crc) -{ - if ( (mCRC != crc) - ||(mDP.getBufferSize() == 0)) - { - //LL_INFOS() << "Not getting cache entry, invalid!" << LL_ENDL; - return NULL; - } - mHitCount++; - return &mDP; -} - LLDataPackerBinaryBuffer *LLVOCacheEntry::getDP() { if (mDP.getBufferSize() == 0) |