Separate imgui contexts for TV and Pad windows. (#664)

This commit is contained in:
goeiecool9999 2023-02-18 11:56:43 +01:00 committed by GitHub
parent daf3ef060a
commit cbb79fd34c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 131 additions and 184 deletions

View file

@ -1517,6 +1517,7 @@ void VulkanRenderer::ImguiInit()
void VulkanRenderer::Initialize()
{
Renderer::Initialize();
CreatePipelineCache();
ImguiInit();
CreateNullObjects();
@ -1524,6 +1525,7 @@ void VulkanRenderer::Initialize()
void VulkanRenderer::Shutdown()
{
Renderer::Shutdown();
SubmitCommandBuffer();
WaitDeviceIdle();
}