Damus
Omar · 23w
nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyd968gmewwp6kyqpqpdrgmlghf898ehfm23zqh9kuaw49h32d52frplah8pth3tmkqf5s5u8d7p Assuming that lots of newcomers will copy that code it sounds desirable that it is mad...
Omar profile picture
@nprofile1q... In addition, ImGuiVulkanUtil::handleKey() in that web uses API that were deprecated in 2022 & went unsupported in nov 2024.

The TL;DR is that:
io.KeysDown[key] = true ==> io.AddKeyEvent(key, true).
io.MousePos = pos; ==> io.AddMousePosEvent(pos); etc.
See https://github.com/ocornut/imgui/issues/4921 for details.
1
Omar · 23w
nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyd968gmewwp6kyqpqpdrgmlghf898ehfm23zqh9kuaw49h32d52frplah8pth3tmkqf5s5u8d7p (If that util/framework is using GLFW honestly it should be using imgui_impl_glfw backend for platform stuff, otherwise 100% chance you having missing features or bugs. But it seems reas...