Skip to content

Commit 2d20e13

Browse files
committed
Backends: GLFW: Added comment about io.AddMouseSourceEvent() not being properly called. (ocornut#8374)
1 parent 1a31e31 commit 2d20e13

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

backends/imgui_impl_glfw.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy GLFW_KEY_* values are obsolete since 1.87 and not supported since 1.91.5]
1010
// [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Resizing cursors requires GLFW 3.4+! Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
12+
// Missing features or Issues:
13+
// [ ] Touch events are only correctly identified as Touch on Windows. This create issues with some interactions. GLFW doesn't provide a way to identify touch inputs from mouse inputs, we cannot call io.AddMouseSourceEvent() to identify the source. We provide a Windows-specific workaround.
1214

1315
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1416
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.

backends/imgui_impl_glfw.h

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy GLFW_KEY_* values are obsolete since 1.87 and not supported since 1.91.5]
99
// [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
1010
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Resizing cursors requires GLFW 3.4+! Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
11+
// Missing features or Issues:
12+
// [ ] Touch events are only correctly identified as Touch on Windows. This create issues with some interactions. GLFW doesn't provide a way to identify touch inputs from mouse inputs, we cannot call io.AddMouseSourceEvent() to identify the source. We provide a Windows-specific workaround.
1113

1214
// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
1315
// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.

0 commit comments

Comments
 (0)