jimgui
jimgui copied to clipboard
Attempting to use this with LibGDX results in having a separate window.
When trying to use this in with LibGDX, it's impossible to get it rendering inside of the main window.
- Using
JImGui(Gdx.graphics.width, Gdx.graphics.height, JImFontAtlas(), "", (Gdx.graphics as Lwjgl3Graphics).window.windowHandle)
results in a second window being created on top of the main one. - Using
JImGui.fromExistingPointer((Gdx.graphics as Lwjgl3Graphics).window.windowHandle)
results in the follow crash :AL lib: (EE) alc_cleanup: 1 device not closed
I just don't know how to do it. Past attempts (with lots of nice people helping me) failed without exceptions. I am unfamiliar with libgdx/lwjgl.
Would love to find a way for this to work. I've been trying to figure out how to create a 3d context with Imgui/libgdx and custom shaders, etc.