diff options
author | Runitai Linden <davep@lindenlab.com> | 2022-01-14 17:11:27 -0600 |
---|---|---|
committer | Runitai Linden <davep@lindenlab.com> | 2022-01-14 17:11:27 -0600 |
commit | 6aa4d06cb6b728beac15773e9f08a02e375893ea (patch) | |
tree | b3cda44317ac281fa9214514c7c1f7eca67a01f9 /indra/newview/pipeline.cpp | |
parent | 04edc151851b7689853069b0748af9c64e94283f (diff) |
SL-16544 Fix for small rigged meshes disappearing at short distances (for real this time).
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index d5f9772b85..d8315c9420 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2500,13 +2500,6 @@ void LLPipeline::markNotCulled(LLSpatialGroup* group, LLCamera& camera) group->updateDistance(camera); } - const F32 MINIMUM_PIXEL_AREA = 16.f; - - if (group->mPixelArea < MINIMUM_PIXEL_AREA) - { - return; - } - assertInitialized(); if (!group->getSpatialPartition()->mRenderByGroup) |