Skip to content

Commit 6e94f6c

Browse files
committed
Merge branch 'master' into docking
# Conflicts: # backends/imgui_impl_osx.mm # backends/imgui_impl_sdl2.cpp # backends/imgui_impl_sdl3.cpp # imgui.cpp # imgui_internal.h
2 parents 109dd2b + e8779a6 commit 6e94f6c

19 files changed

+198
-157
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ examples/example_sdl2_opengl3/web/*
4949
.idea
5050
cmake-build-*
5151

52+
## VS code artifacts
53+
.vscode
54+
5255
## Unix executables from our example Makefiles
5356
examples/example_glfw_metal/example_glfw_metal
5457
examples/example_glfw_opengl2/example_glfw_opengl2

backends/imgui_impl_osx.mm

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
// CHANGELOG
3535
// (minor and older changes stripped away, please see git history for details)
3636
// 2025-XX-XX: Added support for multiple windows via the ImGuiPlatformIO interface.
37+
// 2025-01-20: Removed notification observer when shutting down. (#8331)
3738
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
3839
// - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
3940
// - io.SetClipboardTextFn -> platform_io.Platform_SetClipboardTextFn
@@ -531,6 +532,7 @@ void ImGui_ImplOSX_Shutdown()
531532
ImGui_ImplOSX_Data* bd = ImGui_ImplOSX_GetBackendData();
532533
IM_ASSERT(bd != nullptr && "No platform backend to shutdown, or already shutdown?");
533534

535+
[[NSNotificationCenter defaultCenter] removeObserver:bd->Observer];
534536
bd->Observer = nullptr;
535537
if (bd->Monitor != nullptr)
536538
{

backends/imgui_impl_sdl2.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
// CHANGELOG
2727
// (minor and older changes stripped away, please see git history for details)
2828
// 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
29+
// 2025-01-20: Made ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode_Manual) accept an empty array.
2930
// 2024-10-24: Emscripten: from SDL 2.30.9, SDL_EVENT_MOUSE_WHEEL event doesn't require dividing by 100.0f.
3031
// 2024-09-09: use SDL_Vulkan_GetDrawableSize() when available. (#7967, #3190)
3132
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
@@ -764,7 +765,7 @@ void ImGui_ImplSDL2_SetGamepadMode(ImGui_ImplSDL2_GamepadMode mode, struct _SDL_
764765
ImGui_ImplSDL2_CloseGamepads();
765766
if (mode == ImGui_ImplSDL2_GamepadMode_Manual)
766767
{
767-
IM_ASSERT(manual_gamepads_array != nullptr && manual_gamepads_count > 0);
768+
IM_ASSERT(manual_gamepads_array != nullptr || manual_gamepads_count <= 0);
768769
for (int n = 0; n < manual_gamepads_count; n++)
769770
bd->Gamepads.push_back(manual_gamepads_array[n]);
770771
}

backends/imgui_impl_sdl3.cpp

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// dear imgui: Platform Backend for SDL3 (*EXPERIMENTAL*)
2-
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
1+
// dear imgui: Platform Backend for SDL3
2+
// This needs to be used along with a Renderer (e.g. SDL_GPU, DirectX11, OpenGL3, Vulkan..)
33
// (Info: SDL3 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.)
44

5-
// (**IMPORTANT: SDL 3.0.0 is NOT YET RELEASED AND CURRENTLY HAS A FAST CHANGING API. THIS CODE BREAKS OFTEN AS SDL3 CHANGES.**)
6-
75
// Implemented features:
86
// [X] Platform: Clipboard support.
97
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
@@ -26,8 +24,9 @@
2624
// CHANGELOG
2725
// (minor and older changes stripped away, please see git history for details)
2826
// 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
29-
// 2024-09-11: (Docking) Added support for viewport->ParentViewportId field to support parenting at OS level. (#7973)
27+
// 2025-01-20: Made ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode_Manual) accept an empty array.
3028
// 2024-10-24: Emscripten: SDL_EVENT_MOUSE_WHEEL event doesn't require dividing by 100.0f on Emscripten.
29+
// 2024-09-11: (Docking) Added support for viewport->ParentViewportId field to support parenting at OS level. (#7973)
3130
// 2024-09-03: Update for SDL3 api changes: SDL_GetGamepads() memory ownership revert. (#7918, #7898, #7807)
3231
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
3332
// - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
@@ -730,7 +729,7 @@ void ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode mode, SDL_Gamepad*
730729
ImGui_ImplSDL3_CloseGamepads();
731730
if (mode == ImGui_ImplSDL3_GamepadMode_Manual)
732731
{
733-
IM_ASSERT(manual_gamepads_array != nullptr && manual_gamepads_count > 0);
732+
IM_ASSERT(manual_gamepads_array != nullptr || manual_gamepads_count <= 0);
734733
for (int n = 0; n < manual_gamepads_count; n++)
735734
bd->Gamepads.push_back(manual_gamepads_array[n]);
736735
}

backends/imgui_impl_sdl3.h

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// dear imgui: Platform Backend for SDL3 (*EXPERIMENTAL*)
2-
// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..)
1+
// dear imgui: Platform Backend for SDL3
2+
// This needs to be used along with a Renderer (e.g. SDL_GPU, DirectX11, OpenGL3, Vulkan..)
33
// (Info: SDL3 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.)
44

5-
// (**IMPORTANT: SDL 3.0.0 is NOT YET RELEASED AND CURRENTLY HAS A FAST CHANGING API. THIS CODE BREAKS OFTEN AS SDL3 CHANGES.**)
6-
75
// Implemented features:
86
// [X] Platform: Clipboard support.
97
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.

0 commit comments

Comments
 (0)