diff options
author | Dave Parks <davep@lindenlab.com> | 2012-06-01 14:27:04 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-06-01 14:27:04 -0500 |
commit | 096fe03786a2ccfbbb0363cfb2e371752c6daa2e (patch) | |
tree | ed122b21596dc6d2d097bf2b983ec8aa0100e964 /indra/newview/lldrawpool.cpp | |
parent | defbd61d318d0da12fdea208cf2b2297d9a6b122 (diff) |
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 35f8a85796..7c01a63b86 100644 --- a/indra/newview/lldrawpool.cpp +++ b/indra/newview/lldrawpool.cpp @@ -442,7 +442,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) |