|
6 | 6 | // [X] Platform: Clipboard support.
|
7 | 7 | // [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
|
8 | 8 | // [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. |
10 | 10 | // [X] Platform: Mouse cursor shape and visibility (ImGuiBackendFlags_HasMouseCursors). Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'.
|
11 | 11 | // [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.
|
12 | 12 | // Missing features or Issues:
|
|
24 | 24 | // CHANGELOG
|
25 | 25 | // (minor and older changes stripped away, please see git history for details)
|
26 | 26 | // 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. |
27 | 29 | // 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)
|
28 | 30 | // 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)
|
29 | 31 | // 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*)
|
146 | 148 | ImGui_ImplSDL3_Data* bd = ImGui_ImplSDL3_GetBackendData();
|
147 | 149 | if (bd->ClipboardTextData)
|
148 | 150 | 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(); |
151 | 152 | return bd->ClipboardTextData;
|
152 | 153 | }
|
153 | 154 |
|
@@ -809,9 +810,6 @@ static void ImGui_ImplSDL3_UpdateGamepads()
|
809 | 810 | SDL_free(sdl_gamepads);
|
810 | 811 | }
|
811 | 812 |
|
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; |
815 | 813 | io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad;
|
816 | 814 | if (bd->Gamepads.Size == 0)
|
817 | 815 | return;
|
|
0 commit comments