Light Culling still doesn't work properly

This commit is contained in:
Dynamitos
2022-02-24 22:38:26 +01:00
parent 5268bb68e2
commit 84049a762c
44 changed files with 163 additions and 151 deletions
+3 -5
View File
@@ -41,11 +41,9 @@ void InspectorView::prepareRender()
MainJob InspectorView::render()
{
co_await uiPass.beginFrame();
co_await uiPass.render();
co_await uiPass.endFrame();
renderFinishedEvent.raise();
co_return;
return uiPass.beginFrame()
.then(uiPass.render())
.then(uiPass.endFrame());
}
void InspectorView::keyCallback(KeyCode, InputAction, KeyModifier)