|
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..) |
3 | 3 | // (Info: SDL3 is a cross-platform general purpose library for handling windows, inputs, graphics context creation, etc.)
|
4 | 4 |
|
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 |
| - |
7 | 5 | // Implemented features:
|
8 | 6 | // [X] Platform: Clipboard support.
|
9 | 7 | // [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen.
|
|
26 | 24 | // CHANGELOG
|
27 | 25 | // (minor and older changes stripped away, please see git history for details)
|
28 | 26 | // 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. |
30 | 28 | // 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) |
31 | 30 | // 2024-09-03: Update for SDL3 api changes: SDL_GetGamepads() memory ownership revert. (#7918, #7898, #7807)
|
32 | 31 | // 2024-08-22: moved some OS/backend related function pointers from ImGuiIO to ImGuiPlatformIO:
|
33 | 32 | // - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn
|
@@ -730,7 +729,7 @@ void ImGui_ImplSDL3_SetGamepadMode(ImGui_ImplSDL3_GamepadMode mode, SDL_Gamepad*
|
730 | 729 | ImGui_ImplSDL3_CloseGamepads();
|
731 | 730 | if (mode == ImGui_ImplSDL3_GamepadMode_Manual)
|
732 | 731 | {
|
733 |
| - IM_ASSERT(manual_gamepads_array != nullptr && manual_gamepads_count > 0); |
| 732 | + IM_ASSERT(manual_gamepads_array != nullptr || manual_gamepads_count <= 0); |
734 | 733 | for (int n = 0; n < manual_gamepads_count; n++)
|
735 | 734 | bd->Gamepads.push_back(manual_gamepads_array[n]);
|
736 | 735 | }
|
|
0 commit comments