diff options
author | Richard Linden <none@none> | 2013-08-29 22:50:45 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-08-29 22:50:45 -0700 |
commit | 4e2e3f3f959f4671b16d049a578911a06834fa84 (patch) | |
tree | 1bb0c9a2f65e57c6e59a247d30d0612475ccbb6b /indra/newview/pipeline.cpp | |
parent | e2212f86338728622651619f52e894f265aa320a (diff) |
SH-4292 FIX: Interesting: My avatar declouds slower in Interesting viewer than in Release viewer
moved occlusion culling earlier in login process
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 e77d85849d..af44acc64c 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2539,7 +2539,7 @@ void LLPipeline::updateCull(LLCamera& camera, LLCullResult& result, S32 water_cl LLVOCachePartition* vo_part = region->getVOCachePartition(); if(vo_part) { - bool do_occlusion_cull = can_use_occlusion && use_occlusion && !gUseWireframe && !gViewerWindow->getProgressView()->getVisible(); + bool do_occlusion_cull = can_use_occlusion && use_occlusion && !gUseWireframe/* && !gViewerWindow->getProgressView()->getVisible()*/; vo_part->cull(camera, do_occlusion_cull); } } |