diff options
author | Dave Parks <davep@lindenlab.com> | 2012-09-20 09:48:51 -0400 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-09-20 09:48:51 -0400 |
commit | 1ba00693c7c28730b7a953b2805ec6d6f42e1b36 (patch) | |
tree | aafb5c10c42dc492c92207a5bf11209a328a10d5 /indra/newview/lldrawpool.cpp | |
parent | 737e61293e90c783e493b424cffb6a2f9bb75416 (diff) |
reapply 38b7779af5f9: MAINT-646 Faster traversal of render batch lists.
Diffstat (limited to 'indra/newview/lldrawpool.cpp')
-rw-r--r-- | indra/newview/lldrawpool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lldrawpool.cpp b/indra/newview/lldrawpool.cpp index 81f4e3d48f..859c561a6d 100644 --- a/indra/newview/lldrawpool.cpp +++ b/indra/newview/lldrawpool.cpp @@ -443,7 +443,7 @@ void LLRenderPass::renderTexture(U32 type, U32 mask) void LLRenderPass::pushBatches(U32 type, U32 mask, BOOL texture, BOOL batch_textures) { - for (LLCullResult::drawinfo_list_t::iterator i = gPipeline.beginRenderMap(type); i != gPipeline.endRenderMap(type); ++i) + for (LLCullResult::drawinfo_iterator i = gPipeline.beginRenderMap(type); i != gPipeline.endRenderMap(type); ++i) { LLDrawInfo* pparams = *i; if (pparams) |