Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| c2e8a791 | 2021-06-12 16:20:47 | SDL_windowsevents: add support for multiple mice | ||
| 7948c16d | 2021-06-12 17:56:52 | Pump events each time through the loop in SDL_WaitEventTimeout_Device() Not only is it more efficient to batch process pending events, it is necessary for correctness with the Win32 backend. WIN_PumpEvents() runs periodic updates of the cursor clip region and disambiguation of left and right shift keys in addition to standard event processing. | ||
| 105de64c | 2021-06-12 16:19:03 | Only queue one wakeup event per wait Queuing more than one can lead to a spurious wakeup on the next wait. | ||
| c262569c | 2021-06-22 00:03:18 | kmsdrm: fix KMSDRM_SetDisplayMode being called for the default desktop mode doing nothing | ||
| 98bda391 | 2021-06-23 00:21:31 | kmsdrm: sync the display's current mode with what's set in KMSDRM_CreateSurfaces | ||
| d031a24e | 2021-06-08 00:39:04 | kmsdrm: defer surface recreation inside of KMSDRM_SetWindowSize and KMSDRM_SetWindowFullscreen as is done in KMSDRM_SetWindowDisplayMode | ||
| 5a296e25 | 2021-06-08 20:48:24 | kmsdrm: avoid overriding the mode requested by SDL_SetWindowDisplayMode when recreating surfaces | ||
| 814285d6 | 2021-06-23 09:19:02 | Workaround for crash on Apple Mac M1 hardware | ||
| bc141e44 | 2021-06-23 15:09:07 | Remove -static-libgcc from sdl2-config output | ||
| a6715a20 | 2021-06-23 14:56:02 | revert the previous -Wc,-static-libgcc patch: Someone reported breakage with that: https://github.com/libsdl-org/SDL/commit/bc51de2f87194e45eec94414bc248a6e7a0f9d26#commitcomment-52550755 | ||
| bc51de2f | 2021-06-22 18:11:24 | regenerated configure script. | ||
| 23575a42 | 2021-06-22 15:18:25 | Ensure that libgcc is linked statically on Windows | ||
| 41fab853 | 2021-06-18 18:10:24 | ControllerList: set the default deadzone for Ps5 controller back to same one as Xbox controllers. Too many users complained about drift. | ||
| a8b28939 | 2021-06-18 18:10:23 | ControllerList: add more Xbox controllers from minidumps | ||
| 08eff56a | 2021-06-18 18:10:22 | ControllerList: add Brooks Mars controller to PS4 controller list | ||
| afd100f0 | 2021-06-18 17:37:46 | Added support for the PowerA Fusion Pro 2 and the PDP Xbox Series X Afterglow and Blue controllers | ||
| 839387ed | 2021-06-17 22:09:13 | video/dummy: Don't zero out the fake display mode before adding it. The SDL_zero call was in the wrong place as a historical accident, I think. | ||
| 268fbcd4 | 2021-06-17 11:23:47 | Fixed compiler warning on Visual Studio | ||
| d8dba5bc | 2021-06-17 11:22:08 | Added support for the Logitech G923 racing wheel | ||
| 7f261d3b | 2021-06-15 00:35:13 | wayland: Fix returning to a window from fullscreen without calling SetWindowSize | ||
| 8da0dd17 | 2021-06-15 18:54:52 | Oops. Renderer already queues viewport change | ||
| 1fc51988 | 2021-06-15 18:49:55 | Reset/re-apply viewport on frame start/target change. Fixes SDL_RenderSetLogicalSize on PSVita | ||
| 0cad3023 | 2021-06-14 13:56:12 | Removed reference to ant project. The android-project-ant directory does not exist anymore. | ||
| 2465444f | 2021-06-14 21:27:09 | Add missing dependencies | ||
| bc7ac134 | 2021-06-11 09:22:41 | Windows: Fix SDL_GetBasePath() truncating paths SDL_GetBasePath grows its path buffer for long paths, but GetModuleFileNameExW always truncates and succeeds, so `len` was always equal to (buflen - 1) which is 127. This is easily fixed by checking for (buflen - 1) instead of buflen. For paths longer than MAX_PATH, this problem sometimes got hidden by Windows path shortening ("C:\PROGRA~1\" etc.). Tested on Windows 10 x64 19041 and 10586. | ||
| db5cd8c6 | 2021-06-12 14:57:34 | joystick: virtual: Fix event injection for axes/hats SDL_JoystickSetVirtualAxisInner() and SDL_JoystickSetVirtualHatInner() did not properly sanitize the 'axis' and 'hat' parameters. Signed-off-by: Paul Cercueil <paul@crapouillou.net> | ||
| f3cf019e | 2021-06-12 13:25:34 | joystick: Add missing comma in joystick drivers list Without this comma it is impossible to enable both the Vita and Dummy drivers at the same time. Signed-off-by: Paul Cercueil <paul@crapouillou.net> | ||
| 98f2e38b | 2021-06-12 09:42:54 | Use <sys/endian.h> for endian detection on NetBSD Signed-off-by: Nia Alarie <nia@NetBSD.org> | ||
| bc9888c9 | 2021-06-12 14:55:24 | OS2_GetDisplayModes: malloc a new copy of mode's driver data. Based on a patch by Jochen Schäfer <josch1710@live.de> : The problem is, that in the initialization code uses the same structure for desktop_mode and current_mode. See SDL_os2video.c:OS2_VideoInit(): stSDLDisplay.desktop_mode = stSDLDisplayMode; stSDLDisplay.current_mode = stSDLDisplayMode; ... stSDLDisplayMode.driverdata = pDisplayData; Then, if you call GetDisplayModes, current_mode will added to the modes list, with the same driverdata pointer to desktop_mode. SDL_AddDisplayMode( display, &display->current_mode ); When VideoQuit gets called, first the modes list gets freed including the driverdata, the desktop_mode gets freed. See SDL_video.c:SDL_VideoQuit(): for (j = display->num_display_modes; j--;) { SDL_free(display->display_modes[j].driverdata); display->display_modes[j].driverdata = NULL; } SDL_free(display->display_modes); display->display_modes = NULL; SDL_free(display->desktop_mode.driverdata); display->desktop_mode.driverdata = NULL; So, the display_modes[j].driverdata gets freed, but desktop_mode->driverdata points to the same memory, but is not NULL'ed. When desktop_mode->driverdata gets freed the memory is already freed, and libcx crashes the application on SDL_Quit. | ||
| d28437de | 2021-06-12 08:00:50 | SDL_keyboard.c: Add bounds guards when assigning to the scancode array. Based on a patch by Jochen Schäfer <josch1710@live.de> : On a T420 pressing the ACPI button for volume control, big scancodes were emitted. This was causing an overflow, because missing guards. | ||
| eb15b4e9 | 2021-06-11 23:40:09 | wayland: Drop SwapWindow calls for hidden windows | ||
| 37d35a3e | 2021-06-11 21:02:49 | kmsdrm: hook up KMSDRM_GLES_DefaultProfileConfig for use. Fixes #3678. | ||
| 3c028141 | 2021-06-10 13:26:38 | Update docs and fix typos | ||
| bbdd08e0 | 2021-06-10 13:20:39 | Build without PIB support by default and add flag to enable it | ||
| a4442476 | 2021-06-10 12:14:14 | Cleanup dead and duplicate code | ||
| c2b8b556 | 2021-06-10 12:06:28 | Older api, not needed | ||
| dd2a2858 | 2021-06-10 12:00:56 | Remove leftovers | ||
| 2f248a2a | 2021-06-11 04:00:32 | SDL_cocoaevents.m: fix build against SDK < 10.12 after commit 0dd7024d. | ||
| f5122377 | 2021-06-10 14:06:32 | Move SDL_IsXInputDevice check above actual joystick allocation | ||
| 766d81ec | 2021-06-10 14:01:04 | Rewrite SDL_DINPUT_JoystickPresent method to avoid costly IDirectInput8_CreateDevice calls | ||
| a6da2fbf | 2021-05-25 12:33:23 | Rename haptic methods to avoid confusion with joystick: `SDL_DINPUT_MaybeAddDevice`->`SDL_DINPUT_HapticMaybeAddDevice` `SDL_DINPUT_MaybeRemoveDevice`->`SDL_DINPUT_HapticMaybeRemoveDevice` `SDL_XINPUT_MaybeAddDevice`->`SDL_XINPUT_HapticMaybeAddDevice` `SDL_XINPUT_MaybeRemoveDevice`->`SDL_XINPUT_HapticMaybeRemoveDevice` | ||
| 73dc68a7 | 2021-05-19 17:52:08 | Simplify and cleanup DirectInput joystick backend code: - Do not call IDirectInputDevice8_QueryInterface(device, &IID_IDirectInputDevice8,...) on DIRECTINPUTDEVICE8 device - Get joystick VendorID and ProductID via IDirectInputDevice8_GetProperty(.., DIPROP_VIDPID, ..) call instead of messing with DIDEVICEINSTANCE.guidProduct - Normalize HID device interface path to upper case for stable operation of XInput check - Remove useless RawInput calls in SDL_IsXInputDevice() - just check for "IG_" string in HID device interface path that we already have There shouldn't be any observable behavior changes. | ||
| f2f759dc | 2021-02-26 15:34:34 | Remove not used DirectInput ignored_devices list | ||
| adc2d362 | 2021-02-26 15:33:41 | Remove outdated and not used WIN_IsXInputDevice code | ||
| 0e62926e | 2021-06-10 16:28:32 | Fixed crash if vendor or product strings are empty | ||
| 25fc40b0 | 2021-06-10 13:56:22 | stdinc: Silence clang warning for -Wimplicit-fallthrough. In a more ideal world, we'd use the appropriate `__attribute__` here, but it's one thing in a public header that probably shouldn't be there at all, so this is good enough for now. Fixes #4307. | ||
| e65a6583 | 2021-06-09 22:10:20 | x11: Add a hint to force override-redirect. Fixes #3776. | ||
| 642fa0e3 | 2021-06-09 21:18:11 | configure: Enable KMSDRM target by default. | ||
| 56e96254 | 2021-06-09 13:38:05 | build-scripts: modernized gcc-fat.sh for Big Sur and ARM64. Put these in "clang-fat.sh" and "clang++-fat.sh" in case someone still needs 32-bit x86 support from the old scripts. Fixes #4350. | ||
| cb5e8635 | 2021-06-08 13:15:24 | Fixed crash after reinitializing libusb HID support | ||
| c33e3c15 | 2021-06-07 18:24:57 | testwm2: draw various debug logging into the window itself Renderer output size, window position/size, display bounds, etc. Uses new SDLTest_CommonDrawWindowInfo function in test_common. | ||
| e13b43ac | 2021-06-05 12:44:08 | Don't skip sending wakeups for the current thread We can be in a situation where we receive a win32 hook callback on the same thread that is currently waiting. In that case, we do still need to trigger a wakeup when an event is pushed because the hook itself won't necessarily do that (depending on what we return from the hook). | ||
| b992b915 | 2021-06-05 11:57:30 | Optimize SDL_WaitEventTimeout() for the SDL_PollEvent() case There's no sense in doing all the setup for waiting if we're just polling. | ||
| 85b51e6c | 2021-06-05 11:46:47 | Fall back to polling normally if not operating the win32 message loop In this condition, we cannot safely wait/wake on events. | ||
| e13d5df0 | 2021-06-05 11:41:55 | Call SDL_SendWakeupEvent() directly from SDL_PeepEvent() SDL_PeepEvent() is a documented public API, so we must properly support waking a waiting thread in SDL_WaitEventTimeout() with SDL_PeepEvent(). | ||
| d956636c | 2021-06-04 18:39:47 | wayland: Implement FlashWindow | ||
| 64724db0 | 2021-06-04 19:55:30 | Implement bare minimum for SDL_FlashWindow | ||
| 64c40b90 | 2021-06-04 14:34:21 | Updated copyright date | ||
| 37b093ea | 2021-06-05 00:05:56 | test/checkkeysthreads: build fixes, and add to os2 makefile. | ||
| 0dd7024d | 2021-03-12 21:58:20 | Modifies WaitEvent and WaitEventTimeout to actually wait instead of polling When possible use native os functions to make a blocking call waiting for an incoming event. Previous behavior was to continuously poll the event queue with a small delay between each poll. The blocking call uses a new optional video driver event, WaitEventTimeout, if available. It is called only if an window already shown is available. If present the window is designated using the variable wakeup_window to receive a wakeup event if needed. The WaitEventTimeout function accept a timeout parameter. If positive the call will wait for an event or return if the timeout expired without any event. If the timeout is zero it will implement a polling behavior. If the timeout is negative the function will block indefinetely waiting for an event. To let the main thread sees events sent form a different thread a "wake-up" signal is sent to the main thread if the main thread is in a blocking state. The wake-up event is sent to the designated wakeup_window if present. The wake-up event is sent only if the PushEvent call is coming from a different thread. Before sending the wake-up event the ID of the thread making the blocking call is saved using the variable blocking_thread_id and it is compared to the current thread's id to decide if the wake-up event should be sent. Two new optional video device methods are introduced: WaitEventTimeout SendWakeupEvent in addition the mutex wakeup_lock which is defined and initialized but only for the drivers supporting the methods above. If the methods are not present the system behaves as previously performing a periodic polling of the events queue. The blocking call is disabled if a joystick or sensor is detected and falls back to previous behavior. | ||
| 40e5ce7f | 2021-06-04 13:23:54 | This delay is no longer needed on Steam Link hardware | ||
| cd67f42d | 2021-06-04 12:20:47 | add Linux mapping for brook fighting board (#4416) * added controller mapping for Brook fighting board * fixed formatting on Brook Universal Fighting Board controller mapping entry | ||
| de4ba6eb | 2021-05-27 12:41:41 | Ignore the device version for Atari vcs controllers At least on bluetooth the guid user the version reported by the bluetooth device. Which for Atari vcs controllers is the firmware version. However the mapping will stay the same regardless of firmware version, so ignore the version entirely to avoid needing a new mapping entry for each firmware version. Signed-off-by: Sjoerd Simons <sjoerd@collabora.com> | ||
| 89fd9821 | 2021-05-26 21:33:25 | Add controller mapping for Atari vcs controllers This add controller mappings for the Atari vcs (modern) controller as well as the classic controller, for both bluetooth and USB connectivity. Signed-off-by: Sjoerd Simons <sjoerd@collabora.com> | ||
| 6de33c09 | 2021-06-03 09:05:33 | Clarify why we're skipping Game Controller framework supported devices in hid.c | ||
| 28da6c5d | 2021-05-27 14:42:03 | Have HIDAPI skip MFI supported HID devices on macOS to avoid duplicate devices. | ||
| 2af3f64e | 2021-06-02 14:37:09 | wayland: Activate the window on first ShowWindow, if possible | ||
| 151f9538 | 2021-06-02 11:41:44 | wayland: Implement RaiseWindow with xdg-activation | ||
| f498c281 | 2021-06-02 14:10:50 | fixed build with SDL_JOYSTICK_RAWINPUT enabled after commit b81969d46f4b See: https://github.com/libsdl-org/SDL/pull/4388#issuecomment-852713792 | ||
| f5b87273 | 2021-06-02 08:32:43 | Fixed bug #4397 - update IOS documentation | ||
| 4522cb1d | 2021-05-25 03:17:03 | Changing variable from float to int, this way we can check it's value without having to do an unnecessary conversion. Then do explicit conversions later on if we need. | ||
| c289bad9 | 2021-03-22 11:22:31 | In x11, GetDisplayDPI can give incorrect or unusable DPI information. Using XGetDefaults to get the Xft DPI if it's available and returning that. This could allow you to figure out DPI scale. | ||
| 6a2af48a | 2021-05-06 15:43:16 | CMake: Generic check for desktop GL and EGL on Linux systems | ||
| fd121b5e | 2021-05-13 17:46:55 | development list has moved to forum | ||
| ded02387 | 2021-05-16 17:16:54 | Make CMake script more accurate to autoconf script DBus, IBus and inotify is now able to be used outside Linux like in configure. KMSDRM input is now working on FreeBSD with CMake compilation. | ||
| d3244035 | 2021-05-17 01:24:35 | wayland: Add support for maximized/restored events | ||
| fc508eab | 2021-05-23 15:59:20 | kmsdrm: remove redundant modeset_pending flag this variable was added in commit 2067a7db8e4a36ba40ab34a55b3166ca28638a60 and ultimately tracks if this is a surface's first present. checking if the current bo is NULL provides the same functionality and cuts down on a redundant piece of state potentially getting out of sync in the future | ||
| 4c965b7a | 2021-05-23 16:09:27 | kmsdrm: fix SetDisplayMode binding the the wrong surface / context SetDisplayMode needs to recreate the EGL surfaces, which then need to be bound along with the correct context in each rendering thread commit 3a1d7d9c9ac670bf35cfa8ebf3706a1e2a3e5de4 removed this behavior which has broken using SetDisplayMode when rendering with multiple contexts the commit message was rather vague, but if the surfaces do need to be created immediately, this process probably needs to be split such that surface is created immediately, but the binding is deferred | ||
| 0219928d | 2021-05-23 16:06:40 | kmsdrm: honor mode previously set by SDL_SetWindowDisplayMode when enabling fullscreen and remove duplicate SDL_WINDOWEVENT_RESIZED event commit 2067a7db8e4a36ba40ab34a55b3166ca28638a60 made SDL_SetWindowSize and SDL_SetWindowFullscreen modify the display mode previously set by a call to SDL_SetWindowDisplayMode as far as I understand the SDL API, calling SDL_SetWindowDisplayMode followed by calling SDL_SetWindowFullscreen(..., SDL_WINDOW_FULLSCREEN) is the correct way to mode set / switch to fullscreen this change restores that functionaliy when switching to SDL_WINDOW_FULLSCREEN, but other cases are still modifying the display mode set by the user. rather than modifying the display mode set by the user, it seems this logic inside of KMSDRM_ReconfigureWindow should be pushed further down into KMSDRM_CreateSurfaces (as it was originally) to only modify the final mode that's set (based on the fullscreen flags), but not override the mode requested by the user | ||
| fd5de93a | 2021-05-23 16:05:39 | kmsdrm: fix gbm surface dimensions not matching the mode being set commit 2067a7db8e4a36ba40ab34a55b3166ca28638a60 introduced new surface_w and surface_h variables which were passed to gbm_surface_create rather than the dimensions from the drmModeModeInfo structure. commit 5105ecf8b1b37ab4e4b8344550c90dd69f49909e further refactored this code and no longer synchronized these variables inside KMSDRM_SetDisplayMode, breaking it this change removes the variables since they're seemingly redundant to begin with | ||
| 30359a68 | 2021-06-01 20:11:59 | Android: document workaround to use JNI on native thread (see bug #4406) | ||
| b63cb822 | 2021-05-30 01:57:56 | Added T500RS to known wheel list | ||
| b81969d4 | 2021-05-17 14:50:33 | Be more explicit about Xbox 360/One device ids. When Xbox One/Series Controllers are connected via USB on Windows they all are using `XBOXGIP` driver and produce a special ProductID `0x02FF` (GIP software PID) for any connected controller. On the other hand `Xbox 360 Wireless Controller Reciever` (PID 0x0719) is using `XUSB` driver and produces special ProductID `0x02A1` (XUSB software PID) for each connected Xbox 360 Wireless Controller. Also fixed Xbox One Series X Controller comment. | ||
| 86ee383f | 2021-05-25 09:59:45 | Removed duplicate SDL_AtomicGet() | ||
| fed84650 | 2021-05-27 10:40:41 | loadbmp: Attempt to handle small palettes better. Only adjust the biClrUsed field if it is set to zero in the bitmap, and make some effort to make sure we don't overflow a buffer in any case. This was triggering an issue with the sailboat bmp used for testpalette.c in SDL 1.2, which is an 8-bit paletted image with 66 palette entries instead of 256. See discussion at https://github.com/libsdl-org/sdl12-compat/issues/63 This change might be a problem, but there's no indication this code, which originally landed in SDL_image 17 years ago with a large rewrite, is actually fixing a specific issue. I'm also not sure we should actually make an effort to accept a bmp that has a biClrUsed field that is both non-zero and _also_ incorrect. | ||
| db146e66 | 2021-05-25 10:34:04 | Fixed warnings building with Visual Studio | ||
| 3fcaf5b4 | 2021-05-25 10:33:30 | Fixed incorrect axis scaling for Nintendo Switch controllers | ||
| 75725608 | 2021-05-25 14:56:56 | SDL_thread.h: move libc header includes before begin_code.h. | ||
| 7a7cba4b | 2021-05-25 14:56:37 | config.guess, config.sub: fix permissions | ||
| 157c3f80 | 2021-05-21 09:45:08 | [SDL] Minimize number of system calls when handling WM_INPUT raw input messages. Details: Currently doing 4 system calls per WM_INPUT message, which can cause the thread handling the message loop to be swapped out several times: * GetProp - to get window data from the window handle * GetRawInputData - to retrieve the raw input data * 2 calls to GetMessageExtraInfo - to ignore synthetic mouse events generated for touchscreens In this change: * Replaced GetProp by iterating the list of windows maintained by SDL (with a fallback to GetProp). Note that this will affect all messages and not just WM_INPUT * only calling GetMessageExtraInfo if a touchscreen has been detected Fix for https://jira.valve.org/browse/CSGO-4855 @saml | ||
| dbbc725f | 2021-05-19 14:25:48 | Remove WSCONS mouse scaling | ||
| 2aa14b38 | 2021-05-19 14:24:58 | Add missing key to WSCONS-to-SDL conversion table | ||
| c63a62ae | 2021-05-18 23:51:50 | updates to config.guess and config.sub from mainstream. | ||
| 333c8e75 | 2021-05-17 11:54:05 | The PS5 driver supports Joystick LED | ||
| b5b7804e | 2021-05-15 00:50:20 | minor update to os2 makefile. (binary output doesn't change.) | ||
| 646ddfb7 | 2021-05-15 00:22:50 | minor watcom build fixes. | ||
| be5356af | 2021-05-14 14:44:13 | winrt: Fix support for multiple simultaneous mouse button presses | ||
| 62a562de | 2021-05-12 23:37:18 | X11: use x11sym loaded functions (see bug #3978) | ||
| 531d83bf | 2021-05-12 23:13:48 | X11: allow using touchscreen, while pointer is grabbed (see bug #3978) | ||
| ddc6be35 | 2021-05-12 20:43:10 | KMSDRM on Dragonfly BSD doesn't work without being root |