Doug Binks
Doug Binks
No, GLFW does not support Android.
It looks like `CalcWordWrapPosition` is not yet in Dear ImGui, so this needs a macro check for ImGui version `IMGUI_VERSION_NUM` or a feature macro test, though it looks like there...
Excellent - thanks. Somehow I didn't notice this was a draft!
I've merged this into dev branch so I can work on the suggestions from @ocornut. Many thanks for the PR!
This is now merged into main with the changes suggested, though I used `#if IMGUI_VERSION_NUM >= 19197` as `19197` seems to be the wip version.
> what I don't expect in the next time given that many PRs here are just ignored by the Maintainers We're not ignoring PRs, we just are not able to...
I think using an external library would be better than GLFW, which tries to keep to a minimal set of APIs.
In general X11 likely won't offer better Vulkan support than Wayland, so I think this is likely a developer only issue, and at initialization time the API at the moment...
My solution for this was to alter `BringWindowToDisplayFront`, as this respects the `ImGuiWindowFlags_NoBringToFrontOnFocus` flag: https://github.com/dougbinks/imgui/commit/b97e4e3c82ac56e13944acce9a8c57b391620ff7
I've pushed a fix to the above as the viewport needs to be checked for `NULL` (edit:) and that `PlatformWindowCreated` is true. ```C++ if (g.PlatformIO.Platform_SetWindowFocus && window->Viewport && window->Viewport->PlatformWindowCreated )...