diff options
author | Dave Parks <davep@lindenlab.com> | 2011-03-04 14:25:46 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-03-04 14:25:46 -0600 |
commit | b89af09f598af21b67b14e5ff940461d9c89afb8 (patch) | |
tree | 7b138a45d9f29dea25639846adf3a24bc815edbd /indra/newview/pipeline.cpp | |
parent | 30763ec707bb65214420c230706d408420a5cb80 (diff) |
SH-998 Fix for improper LoD when an object is first rezzed.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rwxr-xr-x | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 9eaf515c65..ba597d62bf 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2742,7 +2742,7 @@ void LLPipeline::stateSort(LLDrawable* drawablep, LLCamera& camera) if (LLViewerCamera::sCurCameraID == LLViewerCamera::CAMERA_WORLD) { - if (drawablep->isVisible()) + //if (drawablep->isVisible()) isVisible() check here is redundant, if it wasn't visible, it wouldn't be here { if (!drawablep->isActive()) { |