-
Notifications
You must be signed in to change notification settings - Fork 0
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
Imgui Implementation Comments #12
Comments
Should use lastest ImGUI version to avoid strange 'Validation Error: [ VUID-VkMappedMemoryRange-size-01389 ]', please refer to this. |
This says to use in target_sources the files "${CMAKE_CURRENT_SOURCE_DIR}/imgui/imgui_impl_vulkan.cpp" and "${CMAKE_CURRENT_SOURCE_DIR}/imgui/imgui_impl_sdl.cpp". With the current imgui that should be "${CMAKE_CURRENT_SOURCE_DIR}/imgui/backends/imgui_impl_vulkan.cpp" and "${CMAKE_CURRENT_SOURCE_DIR}/imgui/backends/imgui_impl_sdl.cpp". |
Also, |
The CVAR page is missing a comment section. The CVarArray destructor uses the wrong delete, it should be: delete[] cvars; |
Hello, Victor Blanco. EDIT: |
What are the steps involved when using something other than SDL? |
I used to this guide to integrate imgui with my vulkan/glfw renderer and the steps are nearly the same |
is Dear ImGui compatible with VK_EXT_DESCRIPTOR_BUFFER as of now? |
Implementing DearImgui to a Vulkan engine - Vulkan Guide
Practical guide to vulkan graphics programming
https://www.vkguide.dev/docs/extra-chapter/implementing_imgui/
The text was updated successfully, but these errors were encountered: