Changed to a fixed-size occlusion buffer

This commit is contained in:
Doug McDiarmid
2021-05-28 03:41:44 -07:00
parent bee811ae4f
commit c84882869b
5 changed files with 9 additions and 51 deletions
@@ -643,7 +643,7 @@ namespace AZ
}
}
void CullingScene::BeginCulling(const AZStd::vector<ViewPtr>& views, const AZStd::vector<RenderPipelinePtr>& activePipelines)
void CullingScene::BeginCulling(const AZStd::vector<ViewPtr>& views)
{
m_cullDataConcurrencyCheck.soft_lock();
@@ -652,7 +652,7 @@ namespace AZ
for (auto& view : views)
{
view->BeginCulling(activePipelines);
view->BeginCulling();
}
AuxGeomDrawPtr auxGeom;