Closed dpwiz closed 3 years ago
However, ....
https://github.com/ocornut/imgui/releases/tag/v1.84 Backends: GLFW: backend uses glfwSetCursorEnterCallback() + glfwSetWindowFocusCallback() (#3751, #4377, #2445, #4388) If calling ImGui_ImplGlfw_InitXXX with install_callbacks=true: this is already done for you. If calling ImGui_ImplGlfw_InitXXX with install_callbacks=false: you WILL NEED to register the GLFW callbacks and forward them to the backend: Register glfwSetCursorEnterCallback, forward events to ImGui_ImplGlfw_CursorEnterCallback(). Register glfwSetWindowFocusCallback, forward events to ImGui_ImplGlfw_WindowFocusCallback().
https://github.com/ocornut/imgui/releases/tag/v1.84
Backends: GLFW: backend uses glfwSetCursorEnterCallback() + glfwSetWindowFocusCallback() (#3751, #4377, #2445, #4388)
However, ....