diff options
author | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2018-06-29 17:22:51 +0300 |
---|---|---|
committer | ruslantproductengine <ruslantproductengine@lindenlab.com> | 2018-06-29 17:22:51 +0300 |
commit | 3991a0f765d3d493bcc08ac2aadc707934f4d640 (patch) | |
tree | cdc49ea8f8f319842ac4051a0241402ad50201d2 /indra | |
parent | 21f19cb6f036787d93b186d6fcfd595ae6f03d87 (diff) |
MAINT-8335 Derendering Avatar type also derenders some rezzed mesh objects
Fixed
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/pipeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index e541c1054e..5699d47ad8 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2514,8 +2514,8 @@ void LLPipeline::updateCull(LLCamera& camera, LLCullResult& result, S32 water_cl LLSpatialPartition* part = region->getSpatialPartition(i); if (part) { - if (hasRenderType(part->mDrawableType)) - { + if (LLViewerRegion::PARTITION_BRIDGE == i || hasRenderType(part->mDrawableType)) + { //pass PARTITION BRIDGE because LLDrawable can be moved to this partition part->cull(camera); } } |