-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vulkan implementation MinImageCount >= 2 #3171
Comments
I'm not entirely sure but I think if you look at the docking branch, where the back-end has support for multi-viewports, you'll get a fuller understanding of why it is like that. |
Thanks Omar. I've confirmed for myself that this field should probably represent the minImageCount of the swapchain itself (and not the surface used to create it) and this makes perfect sense. I say probably because it seems that for external usage, info->MinImageCount is unreferenced outside of the assert. Only info->ImageCount is used (I've confirmed this also on the viewport branch). Looking closer at the viewport branch, there are situations when info->MinImageCount != info->ImageCount might need to be handled, but it appears this situation is only relevant to the example (not for external usage). So I'm thinking that instead of:
perhaps it makes more sense as:
And perhaps indicate via a comment that info->MinImageCount is for internal usage only.. |
I'd strongly recommend to rename In this light, I'd also argue that
makes no sense. You can't compare the two. In fact, I don't think that imgui has anything to do with MinImageCount at all, except to initialize vulkan examples (aka, to create a swapchain?) Imgui should not be aware of the swapchain and therefore has no business knowing about |
Version/Branch of Dear ImGui:
Version: 1.76 WIP
Branch: master
Back-end/Renderer/Compiler/OS
Back-ends: imgui_impl_vulkan.cpp
Operating System: Windows 10
Question:
I'm new to Vulkan (and swapchains) so I apologise if the answer to this should be obvious (and I'm already starting to think maybe the answer is obvious).
I'm using the provided vulkan implementation in my own project (imgui_impl_vulkan.cpp).
When initialising (via ImGui_ImplVulkan_Init) I note that the ImGui_ImplVulkan_InitInfo struct expects both an ImageCount and MinImageCount.
My question is...
Is the intended usage of MinImageCount supposed to represent the minimum number of images supported by the surface that supports the swapchain? Or should it represent the minImageCount of the swapchain itself?
I ask because I encountered an issue while using VK_PRESENT_MODE_FIFO_KHR
When using this mode, the surface that supports the swapchain has minImageCount==1_.
However, I'm still creating the swapchain itself with minImageCount==2.
ImGui_ImplVulkan_Init() asserts to ensure MinImageCount is >= 2 so I presume I should be using the swapchain minImageCount and that should be that.
As an aside... It's not clear to me when minImageCount would not be equal to ImageCount - but I suspect the answer to that is entirely unrelated to Dear ImGui. Please disregard if that is the case.
The text was updated successfully, but these errors were encountered: