imgui-java icon indicating copy to clipboard operation
imgui-java copied to clipboard

Update to 1.89

Open calvertdw opened this issue 3 years ago • 3 comments

Looks like ocornut fixed some docking and viewport issues upstream, which I know will help me out a lot. https://github.com/ocornut/imgui/releases/tag/v1.89

calvertdw avatar Nov 15 '22 02:11 calvertdw

@calvertdw I do work on #132 and there was a plan to publish a Dear ImGui update with it. Yet, right now, I can't find a spare time to complete the thing... If you need something specific, I recommend to fork the project and make proper changes in it. CI should work fine to get required jar's/dll's/so files.

SpaiR avatar Nov 16 '22 09:11 SpaiR

@SpaiR I haven't looked too much into what you're doing but I figured I'd throw it out there: Do you thing JavaCPP would address some of your needs? We've used it a lot very successfully. https://github.com/bytedeco/javacpp

calvertdw avatar Nov 16 '22 16:11 calvertdw

@calvertdw I've looked over solutions like JavaCPP and 3rd party java libraries is not what I want to pull into the binding. And, basically, they are unneeded, since the JNI layer is generated. The problem here is to manually write all the code needed for that. So, instead I'm writing a general purpose code generator which will be integrated with https://github.com/cimgui/cimgui.

tldr; I'm writing a code generator for a code generator to generate JNI code. 😅

SpaiR avatar Nov 16 '22 16:11 SpaiR