Fix ImGui overlay and add extension dependencies for dynamicrendering example

This commit is contained in:
Stephen Saunders 2022-08-01 19:05:37 -04:00
parent 62f6dcf767
commit 54d0b27e4a
4 changed files with 23 additions and 4 deletions

View file

@ -217,7 +217,7 @@ void VulkanExampleBase::prepare()
loadShader(getShadersPath() + "base/uioverlay.frag.spv", VK_SHADER_STAGE_FRAGMENT_BIT),
};
UIOverlay.prepareResources();
UIOverlay.preparePipeline(pipelineCache, renderPass);
UIOverlay.preparePipeline(pipelineCache, renderPass, swapChain.colorFormat, depthFormat);
}
}