diff options
author | RunitaiLinden <davep@lindenlab.com> | 2023-12-01 14:49:22 -0600 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2023-12-01 14:49:22 -0600 |
commit | c573d27e5baf23adbc14153c4d65a581f55febb4 (patch) | |
tree | 41fcbccdffd13c77073768241baa55200a695614 /indra/newview/pipeline.cpp | |
parent | a09b083b1b18d293d97dd84dd4849924b2766a4f (diff) |
SL-20611 Followup -- fix for water rendering twice. Add comments around LLEventPoll hack.
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 76414b5e4e..50cd4adb73 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -2311,13 +2311,6 @@ void LLPipeline::updateCull(LLCamera& camera, LLCullResult& result) gSky.mVOWLSkyp->mDrawable->setVisible(camera); sCull->pushDrawable(gSky.mVOWLSkyp->mDrawable); } - - bool render_water = !sReflectionRender && (hasRenderType(LLPipeline::RENDER_TYPE_WATER) || hasRenderType(LLPipeline::RENDER_TYPE_VOIDWATER)); - - if (render_water) - { - LLWorld::getInstance()->precullWaterObjects(camera, sCull, render_water); - } } void LLPipeline::markNotCulled(LLSpatialGroup* group, LLCamera& camera) |