Anonymous Maarten
774e51627e
SDL_test: fix infinite loop when passing invalid argument
2023-03-17 17:54:16 +01:00
Anonymous Maarten
c52ad54b05
SDL_test: don't parse audio/video arguments when its subsystem is not enabled
2023-03-17 17:54:16 +01:00
Anonymous Maarten
c8d4ca35ad
SDL_test: always print common log usage, even without audio/video backend
2023-03-17 17:54:16 +01:00
Anonymous Maarten
08c85ebae0
SDL_test: introduce SDLTest_CommonDestroyState to only destroy SDLTest_CommonState
2023-03-17 17:54:16 +01:00
Anonymous Maarten
5109e19935
SDL_test: remove unused BuildCommonUsageString
2023-03-17 17:54:16 +01:00
Anonymous Maarten
9451d3079d
dynapi: SDL_DYNAPI_entry must be in version script
...
For SDL dynapi to work, the SDL_DYNAPI_entry symbol must be externally visible.
Adding __attribute__((visibility(default))) would not work
since version scripts override these.
2023-03-17 08:53:14 -07:00
Sam Lantinga
e4be1247d0
Added a hint to retain window content during state changes
...
In my testing window content is always retained, but this makes our intent explicit.
2023-03-16 20:43:07 -07:00
Sam Lantinga
ed0937598e
Added gamepad mapping for Flydigi Vader 2 with the latest firmware (6.0.4.9)
2023-03-16 20:01:45 -07:00
Sam Lantinga
a776188d77
Don't change the Z order when moving or resizing windows
2023-03-16 17:19:38 -07:00
Sam Lantinga
9ee71f0ddf
Added --skip-taskbar and --always-on-top command line options
2023-03-16 16:58:01 -07:00
Sam Lantinga
3f67f02d0e
Fixed SDL_WINDOW_SKIP_TASKBAR on Windows
...
The WS_EX_APPWINDOW forces a window onto the taskbar, which is not what we want. Set the style to 0 to use the default behavior.
2023-03-16 16:56:46 -07:00
Sam Lantinga
c7ab378c61
We don't need to track whether we were hidden by parent focus change
2023-03-16 14:11:41 -07:00
Sam Lantinga
76176c9845
Conversely, we shouldn't automatically show children when we get focus
2023-03-16 14:09:46 -07:00
Sam Lantinga
0cb7c4ba58
Don't hide popups when losing focus
...
This isn't the behavior on Windows, and this should probably be an application defined behavior.
If we decide we want this globally, it should probably be implemented at a higher level in SDL_OnWindowFocusLost(), and properly handle the transition of focus to a child window.
2023-03-16 14:04:12 -07:00
Sylvain
5da9e99da0
Fixed bug #7462 - 8888 as default GL backbuffer red/green/blue/alpha bit sizes
2023-03-16 13:54:11 -07:00
Sylvain
f9ac7b4044
Fixed bug #7467 - testautomation_audio currently fails because of invalid src/dst rate
2023-03-16 20:49:22 +01:00
Sylvain
899ee8f75a
Change SDL_BLENDMODE_MUL for gl renderers
...
Add FIXME for PSP
2023-03-16 20:25:59 +01:00
Sylvain
b95b203116
Refresh generation of SDL_blit_auto.c after simplifying sdlgenblit.pl
2023-03-16 20:25:59 +01:00
Sylvain
41b8fee833
Simplify SDL_BLENDMODE_MUL in sdlgenblit.pl
2023-03-16 20:25:59 +01:00
Sylvain
99668c286b
Simplify SDL_BLENDMODE_MUL
2023-03-16 20:25:59 +01:00
Sylvain
ad1a216d65
Refresh generation of SDL_blit_auto.c
2023-03-16 20:25:59 +01:00
Sam Lantinga
66eff69d2b
Don't update hidden child windows, their relative position doesn't change
...
This improves performance when moving a top level window that has many hidden child windows
2023-03-16 11:24:21 -07:00
Frank Praznik
a8ea8db6d7
wayland: Update the popup window geometry on configure events
2023-03-16 14:01:42 -04:00
Frank Praznik
be70d9a9c7
wayland: Clarify the popup position restriction purpose
...
Child popups don't necessarily need to be within, but must intersect or be partially adjacent to the parent, per the xdg-positioner spec.
2023-03-16 14:01:42 -04:00
Frank Praznik
c270d151b0
wayland: Handle cases where the compositor does not scale the monitor viewport in its compositing space
...
The xdg-output spec was updated to clarify its usage rules, and what was previously thought to be a bug is actually valid behavior. Gnome, when not using 'scale-monitor-framebuffer', does not scale the viewport of the display in the global compositor space, and thus the physical and logical sizes of the display will match. This value still needs to be divided by the integer scale value to get the logical output dimensions in screen units though.
2023-03-16 14:01:42 -04:00
Sam Lantinga
5dd317b869
Fixed position when setting WM hints on X11 popup windows
2023-03-15 20:23:03 -07:00
Sam Lantinga
422517c036
Allow passing 0 to SDL_SetWindowMinimumSize() and SDL_SetWindowMaximumSize() to indicate no limit
2023-03-15 16:13:56 -07:00
Anonymous Maarten
d27db3defa
cmake+video: always use altivec.h header for detection + introduce SDL_ENABLE_ALTIVEC
2023-03-15 14:54:20 +01:00
Anonymous Maarten
9cb5f0bfc6
video: fix ARM neon and simd
2023-03-15 14:54:20 +01:00
Anonymous Maarten
ba5b1f2fd2
Fix build with -DX11MODES_DEBUG in CPPFLAGS
2023-03-15 14:54:20 +01:00
Anonymous Maarten
d24ef0213b
SDL_threadprio.c uses SCHED_RR and SCHED_FIFO from sched.h
2023-03-15 14:54:20 +01:00
Anonymous Maarten
fc4085b54e
cmake: Allow build system to disable arm neon intrinsics
2023-03-15 14:54:20 +01:00
Anonymous Maarten
46de6241d7
cmake: Allow build system to disable loongarch intrinsics
2023-03-15 14:54:20 +01:00
Anonymous Maarten
4681240241
cmake: Detect AVX + allow build system to disable Intel intrinsics
2023-03-15 14:54:20 +01:00
Sam Lantinga
a17ad65f2b
Revert "Popup window parent defaults to the first toplevel window"
...
This reverts commit e8e2c8175c .
Conceptually tooltips and context menus always have parent windows
2023-03-14 14:53:54 -07:00
Frank Praznik
969e0842e6
video: Preserve the flag to restore popup windows with the parent when recreating the window during renderer initialization
2023-03-14 16:37:09 -04:00
Sam Lantinga
e8e2c8175c
Popup window parent defaults to the first toplevel window
2023-03-14 11:42:58 -07:00
Sam Lantinga
3951cae4a5
Ignore the PS4 packet CRC if it's not being set correctly
...
This fixes handling the 8BitDo SN30 Pro with the 2.00 firmware in PS4 mode
Fixes https://github.com/libsdl-org/SDL/issues/7270
2023-03-13 19:58:35 -07:00
Sylvain
2cafa52598
- Added SDL_WINDOW_TRANSPARENT to request a window with transparent framebuffer
...
- Remove SDL_VIDEO_EGL_ALLOW_TRANSPARENCY hint, EGL now checks 'window->flags & SDL_WINDOW_TRANSPARENT'
2023-03-13 21:23:04 +01:00
Frank Praznik
4dededd345
wayland: Don't throttle presentation until the first swap has occurred
...
Don't throttle window updates until the first swap has occurred, as the window won't actually be shown or receive the frame callback until that point and this causes new window creation to have a full 1 second delay.
2023-03-13 15:36:55 -04:00
Sam Lantinga
4dd26698fc
Added SDL_GetWindowParent() to get the parent of popup windows
2023-03-13 11:21:02 -07:00
Sam Lantinga
ebe3a9dc44
Spacing cleanup
2023-03-13 11:21:02 -07:00
Frank Praznik
1f35fd6939
video: Update the popup window creation documentation and disallowed flags
...
Update the popup window creation documentation with additional info, remove the SDL_WINDOW_MOUSE_GRABBED flag check since it isn't a valid window creation flag and will be removed automatically elsewhere, and check for and remove the explicit skip taskbar and borderless flags since they are implicit for popup windows.
2023-03-13 13:56:01 -04:00
Frank Praznik
f97b469184
video: Disallow additional operations on popups where appropriate
...
Disallow additional window operations on popups where they have no functionality or otherwise don't make sense:
- Popups cannot be set as modal to other windows (they're already child windows of a parent)
- Other windows cannot be set as modal of popups
- Popups cannot explicitly grab the mouse/keyboard (the topmost popup menu takes the keyboard focus implicitly)
- Popups cannot flash or be raised
2023-03-13 13:56:01 -04:00
Frank Praznik
d5b5e524af
wayland: Set the EGL swap timeout to one second from the current time
...
Set the timeout max to one second from the current time or presentation time will always be greater than the timeout and the application will run unthrottled.
2023-03-12 17:07:32 -04:00
David Carlier
3990c71726
SDL_GetBasePath simplification for Haiku.
...
when solely looking for the path for the current binary
in the current team, find_path is sufficient.
2023-03-12 08:29:42 -04:00
Sam Lantinga
67e2558310
Check tooltip and popup window flags during parameter validation
2023-03-11 12:44:57 -08:00
Rudolf Polzer
de3909a190
Android: indicate gamepaddb entries where axis order changed.
...
Axis order was changed in 6f1f586086 to improve
default mappings.
2023-03-11 12:43:48 -08:00
Frank Praznik
3e28588bb6
wayland: Never use the cached size for maximized or tiled windows
...
Don't use the cached floating window size for maximized or tiled windows. Fixes the initial window size when creating a window with the maximized flag set.
2023-03-11 11:40:57 -05:00
Sam Lantinga
f4c1260120
More changes to fix building with older macOS SDKs
2023-03-10 16:38:45 -08:00