Replies: 1 comment 1 reply
-
I don' know if ImGui is capable of working within multiple windows. I haven't used ImGui much myself, my experience is has been refining community contributions to vsgImGui rather than as a ImGui user. I've leaned enough to get things working for the single window usage case. Have a look at the ImGui project decs to see if there is a multi-window example. If there is perhaps vsgImGui can be refactored to handle the multi-window usage case. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using ImGuizmo, an ImGui based library, for manipulating mesh transformation matrices. My application is using a tab interface where there is a vsg::window in each tab.
However, when trying to create a second tab, my program crashed with the error:
This error was received when doing:
Looking at the source code, indeed confirms that there is a call to
ImGui_ImplVulkan_Init()
in this call chain, which prevents callingvsgImGui::RenderImGui::create();
for more than one window.Is there any workaround for this, or this a limitation in ImGui?
Beta Was this translation helpful? Give feedback.
All reactions