diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2013-03-20 22:49:45 -0600 |
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2013-03-20 22:49:45 -0600 |
| commit | bbfb7b9ea1dc025d672968e39908b2327d14878a (patch) | |
| tree | 7f6b6a216a5c82ee8e852b1ad4c8458d94c6171a /indra/newview/llviewerregion.cpp | |
| parent | 933691ad133b552be3fdd26b0d9d26a09c3a7aa5 (diff) | |
for SH-3918: Viewer should respond to cache probes in order received (don't sort response)
Diffstat (limited to 'indra/newview/llviewerregion.cpp')
| -rw-r--r-- | indra/newview/llviewerregion.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index bca2108964..b052c87064 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -1898,7 +1898,11 @@ LLVOCacheEntry* LLViewerRegion::getCacheEntry(U32 local_id) void LLViewerRegion::addCacheMiss(U32 id, LLViewerRegion::eCacheMissType miss_type) { +#if 0 mCacheMissList.insert(CacheMissItem(id, miss_type)); +#else + mCacheMissList.push_back(CacheMissItem(id, miss_type)); +#endif } // Get data packer for this object, if we have cached data |
