summaryrefslogtreecommitdiff
path: root/indra/newview/pipeline.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2022-10-27 11:27:21 -0500
committerDave Parks <davep@lindenlab.com>2022-10-27 11:27:21 -0500
commit0451d51f4da9780e2f650b67672a29b3d07cb386 (patch)
treef8b559b6b7389f82a1239715f6aa1ae6d74eaa47 /indra/newview/pipeline.cpp
parenteb4581edf27a19641e3cd29c54a161548544fbeb (diff)
SL-18459 WIP -- fix for assert in setGLTFMaterial
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r--indra/newview/pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index b60b64ed1f..a0fec90f87 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -6150,7 +6150,7 @@ void LLPipeline::calcNearbyLights(LLCamera& camera)
// FIND NEW LIGHTS THAT ARE IN RANGE
light_set_t new_nearby_lights;
- for (LLDrawable::drawable_set_t::iterator iter = mLights.begin();
+ for (LLDrawable::ordered_drawable_set_t::iterator iter = mLights.begin();
iter != mLights.end(); ++iter)
{
LLDrawable* drawable = *iter;