Skip to content

Commit df5690d

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
2 parents 0c079e4 + a26fcf5 commit df5690d

24 files changed

+121
-88
lines changed

backends/imgui_impl_android.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen.
77
// Missing features or Issues:
88
// [ ] Platform: Clipboard support.
9-
// [ ] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9+
// [ ] Platform: Gamepad support.
1010
// [ ] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. FIXME: Check if this is even possible with Android.
1111
// [ ] Platform: Multi-viewport support (multiple windows). Not meaningful on Android.
1212
// Important:

backends/imgui_impl_android.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen.
77
// Missing features or Issues:
88
// [ ] Platform: Clipboard support.
9-
// [ ] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9+
// [ ] Platform: Gamepad support.
1010
// [ ] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. FIXME: Check if this is even possible with Android.
1111
// [ ] Platform: Multi-viewport support (multiple windows). Not meaningful on Android.
1212
// Important:

backends/imgui_impl_glfw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ static inline float Saturate(float v) { return v < 0.0f ? 0.0f : v > 1.0f ? 1.0
869869
static void ImGui_ImplGlfw_UpdateGamepads()
870870
{
871871
ImGuiIO& io = ImGui::GetIO();
872-
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs.
872+
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs, but see #8075
873873
return;
874874

875875
io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;

backends/imgui_impl_osx.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// [X] Platform: Clipboard support is part of core Dear ImGui (no specific code in this backend).
88
// [X] Platform: Mouse support. Can discriminate Mouse/Pen.
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 kVK_* values are obsolete since 1.87 and not supported since 1.91.5]
10-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
10+
// [X] Platform: Gamepad support.
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: IME support.
1313
// [x] Platform: Multi-viewport / platform windows.

backends/imgui_impl_osx.mm

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// [X] Platform: Clipboard support is part of core Dear ImGui (no specific code in this backend).
88
// [X] Platform: Mouse support. Can discriminate Mouse/Pen.
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 kVK_* values are obsolete since 1.87 and not supported since 1.91.5]
10-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
10+
// [X] Platform: Gamepad support.
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: IME support.
1313
// [x] Platform: Multi-viewport / platform windows.
@@ -35,6 +35,7 @@
3535
// CHANGELOG
3636
// (minor and older changes stripped away, please see git history for details)
3737
// 2025-XX-XX: Added support for multiple windows via the ImGuiPlatformIO interface.
38+
// 2025-03-21: Fill gamepad inputs and set ImGuiBackendFlags_HasGamepad regardless of ImGuiConfigFlags_NavEnableGamepad being set.
3839
// 2025-01-20: Removed notification observer when shutting down. (#8331)
3940
// 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
4041
// - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
@@ -569,7 +570,7 @@ static void ImGui_ImplOSX_UpdateMouseCursor()
569570
else
570571
{
571572
NSCursor* desired = bd->MouseCursors[imgui_cursor] ?: bd->MouseCursors[ImGuiMouseCursor_Arrow];
572-
// -[NSCursor set] generates measureable overhead if called unconditionally.
573+
// -[NSCursor set] generates measurable overhead if called unconditionally.
573574
if (desired != NSCursor.currentCursor)
574575
{
575576
[desired set];
@@ -585,8 +586,6 @@ static void ImGui_ImplOSX_UpdateMouseCursor()
585586
static void ImGui_ImplOSX_UpdateGamepads()
586587
{
587588
ImGuiIO& io = ImGui::GetIO();
588-
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs.
589-
return;
590589

591590
#if APPLE_HAS_CONTROLLER
592591
GCController* controller = GCController.current;

backends/imgui_impl_sdl2.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// [X] Platform: Clipboard support.
88
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
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 SDL_SCANCODE_* values are obsolete since 1.87 and not supported since 1.91.5]
10-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
10+
// [X] Platform: Gamepad support.
1111
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1212
// [X] Platform: Basic IME support. App needs to call 'SDL_SetHint(SDL_HINT_IME_SHOW_UI, "1");' before SDL_CreateWindow()!.
1313
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
@@ -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-03-21: Fill gamepad inputs and set ImGuiBackendFlags_HasGamepad regardless of ImGuiConfigFlags_NavEnableGamepad being set.
2930
// 2025-03-10: When dealing with OEM keys, use scancodes instead of translated keycodes to choose ImGuiKey values. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
3031
// 2025-02-26: Only start SDL_CaptureMouse() when mouse is being dragged, to mitigate issues with e.g.Linux debuggers not claiming capture back. (#6410, #3650)
3132
// 2025-02-25: [Docking] Revert to use SDL_GetDisplayBounds() for WorkPos/WorkRect if SDL_GetDisplayUsableBounds() failed.
@@ -845,9 +846,6 @@ static void ImGui_ImplSDL2_UpdateGamepads()
845846
bd->WantUpdateGamepadsList = false;
846847
}
847848

848-
// FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs.
849-
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0)
850-
return;
851849
io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
852850
if (bd->Gamepads.Size == 0)
853851
return;

backends/imgui_impl_sdl2.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// [X] Platform: Clipboard support.
77
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
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 SDL_SCANCODE_* values are obsolete since 1.87 and not supported since 1.91.5]
9-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9+
// [X] Platform: Gamepad support.
1010
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1111
// [X] Platform: Basic IME support. App needs to call 'SDL_SetHint(SDL_HINT_IME_SHOW_UI, "1");' before SDL_CreateWindow()!.
1212
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.

backends/imgui_impl_sdl3.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// [X] Platform: Clipboard support.
77
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
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 SDL_SCANCODE_* values are obsolete since 1.87 and not supported since 1.91.5]
9-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9+
// [X] Platform: Gamepad support.
1010
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1111
// [x] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable' -> the OS animation effect when window gets created/destroyed is problematic. SDL2 backend doesn't have issue.
1212
// Missing features or Issues:
@@ -24,6 +24,8 @@
2424
// CHANGELOG
2525
// (minor and older changes stripped away, please see git history for details)
2626
// 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
27+
// 2025-03-30: Update for SDL3 api changes: Revert SDL_GetClipboardText() memory ownership change. (#8530, #7801)
28+
// 2025-03-21: Fill gamepad inputs and set ImGuiBackendFlags_HasGamepad regardless of ImGuiConfigFlags_NavEnableGamepad being set.
2729
// 2025-03-10: When dealing with OEM keys, use scancodes instead of translated keycodes to choose ImGuiKey values. (#7136, #7201, #7206, #7306, #7670, #7672, #8468)
2830
// 2025-02-26: Only start SDL_CaptureMouse() when mouse is being dragged, to mitigate issues with e.g.Linux debuggers not claiming capture back. (#6410, #3650)
2931
// 2025-02-25: [Docking] Revert to use SDL_GetDisplayBounds() for WorkPos/WorkRect if SDL_GetDisplayUsableBounds() failed.
@@ -146,8 +148,7 @@ static const char* ImGui_ImplSDL3_GetClipboardText(ImGuiContext*)
146148
ImGui_ImplSDL3_Data* bd = ImGui_ImplSDL3_GetBackendData();
147149
if (bd->ClipboardTextData)
148150
SDL_free(bd->ClipboardTextData);
149-
const char* sdl_clipboard_text = SDL_GetClipboardText();
150-
bd->ClipboardTextData = sdl_clipboard_text ? SDL_strdup(sdl_clipboard_text) : nullptr;
151+
bd->ClipboardTextData = SDL_GetClipboardText();
151152
return bd->ClipboardTextData;
152153
}
153154

@@ -809,9 +810,6 @@ static void ImGui_ImplSDL3_UpdateGamepads()
809810
SDL_free(sdl_gamepads);
810811
}
811812

812-
// FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs.
813-
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0)
814-
return;
815813
io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
816814
if (bd->Gamepads.Size == 0)
817815
return;

backends/imgui_impl_sdl3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// [X] Platform: Clipboard support.
77
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
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 SDL_SCANCODE_* values are obsolete since 1.87 and not supported since 1.91.5]
9-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
9+
// [X] Platform: Gamepad support.
1010
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1111
// [x] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable' -> the OS animation effect when window gets created/destroyed is problematic. SDL2 backend doesn't have issue.
1212
// Missing features or Issues:

backends/imgui_impl_sdlgpu3.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@
1919
// - Introduction, links and more at the top of imgui.cpp
2020

2121
// Important note to the reader who wish to integrate imgui_impl_sdlgpu3.cpp/.h in their own engine/app.
22-
// - Unlike other backends, the user must call the function Imgui_ImplSDLGPU3_PrepareDrawData() BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU3_RenderDrawData.
22+
// - Unlike other backends, the user must call the function ImGui_ImplSDLGPU3_PrepareDrawData() BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU3_RenderDrawData.
2323
// Calling the function is MANDATORY, otherwise the ImGui will not upload neither the vertex nor the index buffer for the GPU. See imgui_impl_sdlgpu3.cpp for more info.
2424

2525
// CHANGELOG
26+
// 2025-03-21: Fixed typo in function name Imgui_ImplSDLGPU3_PrepareDrawData() -> ImGui_ImplSDLGPU3_PrepareDrawData().
2627
// 2025-01-16: Renamed ImGui_ImplSDLGPU3_InitInfo::GpuDevice to Device.
2728
// 2025-01-09: SDL_GPU: Added the SDL_GPU3 backend.
2829

@@ -136,7 +137,7 @@ static void CreateOrResizeBuffer(SDL_GPUBuffer** buffer, uint32_t* old_size, uin
136137
// SDL_GPU doesn't allow copy passes to occur while a render or compute pass is bound!
137138
// The only way to allow a user to supply their own RenderPass (to render to a texture instead of the window for example),
138139
// is to split the upload part of ImGui_ImplSDLGPU3_RenderDrawData() to another function that needs to be called by the user before rendering.
139-
void Imgui_ImplSDLGPU3_PrepareDrawData(ImDrawData* draw_data, SDL_GPUCommandBuffer* command_buffer)
140+
void ImGui_ImplSDLGPU3_PrepareDrawData(ImDrawData* draw_data, SDL_GPUCommandBuffer* command_buffer)
140141
{
141142
// Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
142143
int fb_width = (int)(draw_data->DisplaySize.x * draw_data->FramebufferScale.x);
@@ -368,7 +369,7 @@ void ImGui_ImplSDLGPU3_DestroyFontsTexture()
368369
io.Fonts->SetTexID(0);
369370
}
370371

371-
static void Imgui_ImplSDLGPU3_CreateShaders()
372+
static void ImGui_ImplSDLGPU3_CreateShaders()
372373
{
373374
// Create the shader modules
374375
ImGui_ImplSDLGPU3_Data* bd = ImGui_ImplSDLGPU3_GetBackendData();
@@ -433,7 +434,7 @@ static void ImGui_ImplSDLGPU3_CreateGraphicsPipeline()
433434
{
434435
ImGui_ImplSDLGPU3_Data* bd = ImGui_ImplSDLGPU3_GetBackendData();
435436
ImGui_ImplSDLGPU3_InitInfo* v = &bd->InitInfo;
436-
Imgui_ImplSDLGPU3_CreateShaders();
437+
ImGui_ImplSDLGPU3_CreateShaders();
437438

438439
SDL_GPUVertexBufferDescription vertex_buffer_desc[1];
439440
vertex_buffer_desc[0].slot = 0;

backends/imgui_impl_sdlgpu3.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// - Introduction, links and more at the top of imgui.cpp
2020

2121
// Important note to the reader who wish to integrate imgui_impl_sdlgpu3.cpp/.h in their own engine/app.
22-
// - Unline other backends, the user must call the function Imgui_ImplSDLGPU_PrepareDrawData BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU_RenderDrawData.
22+
// - Unlike other backends, the user must call the function ImGui_ImplSDLGPU_PrepareDrawData BEFORE issuing a SDL_GPURenderPass containing ImGui_ImplSDLGPU_RenderDrawData.
2323
// Calling the function is MANDATORY, otherwise the ImGui will not upload neither the vertex nor the index buffer for the GPU. See imgui_impl_sdlgpu3.cpp for more info.
2424

2525
#pragma once
@@ -40,7 +40,7 @@ struct ImGui_ImplSDLGPU3_InitInfo
4040
IMGUI_IMPL_API bool ImGui_ImplSDLGPU3_Init(ImGui_ImplSDLGPU3_InitInfo* info);
4141
IMGUI_IMPL_API void ImGui_ImplSDLGPU3_Shutdown();
4242
IMGUI_IMPL_API void ImGui_ImplSDLGPU3_NewFrame();
43-
IMGUI_IMPL_API void Imgui_ImplSDLGPU3_PrepareDrawData(ImDrawData* draw_data, SDL_GPUCommandBuffer* command_buffer);
43+
IMGUI_IMPL_API void ImGui_ImplSDLGPU3_PrepareDrawData(ImDrawData* draw_data, SDL_GPUCommandBuffer* command_buffer);
4444
IMGUI_IMPL_API void ImGui_ImplSDLGPU3_RenderDrawData(ImDrawData* draw_data, SDL_GPUCommandBuffer* command_buffer, SDL_GPURenderPass* render_pass, SDL_GPUGraphicsPipeline* pipeline = nullptr);
4545

4646
IMGUI_IMPL_API void ImGui_ImplSDLGPU3_CreateDeviceObjects();

backends/imgui_impl_win32.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui)
66
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen.
77
// [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 VK_* values are obsolete since 1.87 and not supported since 1.91.5]
8-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
8+
// [X] Platform: Gamepad support.
99
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1010
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
1111

@@ -397,8 +397,6 @@ static void ImGui_ImplWin32_UpdateGamepads(ImGuiIO& io)
397397
{
398398
#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD
399399
ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(io);
400-
//if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs.
401-
// return;
402400

403401
// Calling XInputGetState() every frame on disconnected gamepads is unfortunately too slow.
404402
// Instead we refresh gamepad availability by calling XInputGetCapabilities() _only_ after receiving WM_DEVICECHANGE.

backends/imgui_impl_win32.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui)
66
// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen.
77
// [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 VK_* values are obsolete since 1.87 and not supported since 1.91.5]
8-
// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'.
8+
// [X] Platform: Gamepad support.
99
// [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
1010
// [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
1111

docs/CHANGELOG.txt

+17-1
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,28 @@ HOW TO UPDATE?
4141

4242
Breaking changes:
4343

44+
- Backends: SDL3: Fixed casing typo in function name: (#8509, #8163, #7998, #7988) [@puugz]
45+
- Imgui_ImplSDLGPU3_PrepareDrawData() -> ImGui_ImplSDLGPU3_PrepareDrawData()
46+
4447
Other changes:
4548

49+
- IO: variations in analog-only components of gamepad events do not interfere
50+
with trickling of mouse position events (#4921, #8508)
51+
- Windows: fixed SetNextWindowCollapsed()/SetWindowCollapsed() breaking
52+
codepath that preserve last contents size when collapsed, resulting in
53+
programmatically uncollapsing auto-sizing windows having them flicker size
54+
for a frame. (#7691) [@achabense]
55+
- Nav: fixed assertion when holding gamepad FaceLeft/West button to open
56+
CTRL+Tab windowing + pressing a keyboard key. (#8525)
4657
- Error Handling: added better error report and recovery for extraneous
4758
EndPopup() call. (#1651, #8499)
4859
- Style, InputText: added ImGuiCol_InputTextCursor to configure color of
4960
the InputText cursor/caret. (#7031)
61+
- Misc: added extra operators to ImVec4 in IMGUI_DEFINE_MATH_OPERATORS block. (#8510) [@gan74]
62+
- Backends: SDL2, SDL3, OSX: Fill gamepad inputs and set ImGuiBackendFlags_HasGamepad
63+
regardless of ImGuiConfigFlags_NavEnableGamepad being set. (#8508)
64+
- Backends: SDL3: Update for SDL3 api changes: revert SDL_GetClipboardText()
65+
memory ownership change. (#8530, #7801) [@Green-Sky]
5066

5167
Docking+Viewports Branch:
5268

@@ -694,7 +710,7 @@ Decorated log and release notes: https://github.com/ocornut/imgui/releases/tag/v
694710

695711
Breaking changes:
696712

697-
- Internals: using multiple overlayed ButtonBehavior() with same ID will now have the
713+
- Internals: using multiple overlaid ButtonBehavior() with same ID will now have the
698714
io.ConfigDebugHighlightIdConflicts=true feature emit a warning. (#8030)
699715
It was one of the rare case where using same ID is legal. Workarounds:
700716
- use single ButtonBehavior() call with multiple _MouseButton flags

0 commit comments

Comments
 (0)