This commit is contained in:
Sasha Szpakowski
2024-10-17 23:10:10 -03:00
parent 8c52dce565
commit 7ca40027e0
224 changed files with 8872 additions and 6448 deletions
+6
View File
@@ -28,6 +28,12 @@ encounter limitations or behavior that is different from other windowing systems
applications _must_ have an event loop and processes messages on a regular basis, or the application can appear
unresponsive to both the user and desktop compositor.
### The display reported as the primary by ```SDL_GetPrimaryDisplay()``` is incorrect
- Wayland doesn't natively have the concept of a primary display, so SDL attempts to determine it by querying various
system settings, and falling back to a selection algorithm if this fails. If it is incorrect, it can be manually
overridden by setting the ```SDL_VIDEO_DISPLAY_PRIORITY``` hint.
### ```SDL_SetWindowPosition()``` doesn't work on non-popup windows
- Wayland does not allow toplevel windows to position themselves programmatically.