File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Source/Mocha.Host/Rendering Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1490,7 +1490,7 @@ RenderStatus VulkanRenderContext::EndRendering()
14901490 //
14911491 // Render editor
14921492 //
1493- // RenderImGui();
1493+ RenderImGui ();
14941494
14951495 //
14961496 // We want to present the image, so we'll manually transition the layout to
Original file line number Diff line number Diff line change @@ -267,12 +267,12 @@ void RenderManager::Render()
267267 //
268268 // 2. Execute passes
269269 //
270- Globals::m_renderContext->BeginRendering ();
271- sceneMeshPass.Execute ();
272-
273270 Globals::m_renderContext->BeginImGui ();
274271 editorPass.Execute ();
275272 Globals::m_renderContext->EndImGui ();
273+
274+ Globals::m_renderContext->BeginRendering ();
275+ sceneMeshPass.Execute ();
276276 Globals::m_renderContext->EndRendering ();
277277}
278278
You can’t perform that action at this time.
0 commit comments