Preparing for Writeup

This commit is contained in:
2021-10-15 23:12:29 +02:00
parent 2cb70d7b16
commit b1d8ef4120
40 changed files with 284 additions and 192 deletions
+3 -3
View File
@@ -5,7 +5,7 @@ using namespace Seele;
InspectorView::InspectorView(Gfx::PGraphics graphics, PWindow window, const ViewportCreateInfo &createInfo)
: View(graphics, window, createInfo)
, renderGraph(UIPass(graphics, viewport, new Gfx::SwapchainAttachment(window->getGfxHandle())))
, uiPass(UIPass(graphics, viewport, new Gfx::SwapchainAttachment(window->getGfxHandle())))
{
}
@@ -13,7 +13,7 @@ InspectorView::~InspectorView()
{
}
void InspectorView::beginFrame()
void InspectorView::beginUpdate()
{
}
@@ -22,7 +22,7 @@ void InspectorView::update()
}
void InspectorView::endFrame()
void InspectorView::commitUpdate()
{
}