sdl2_frt/src/video
Austin Shafer 16e3bfe807 SetDisplayMode: Call XRRSetScreenSize before setting CRTC config
X11_SetDisplayMode currently calls X11_XRRSetCrtcConfig alone. This results
in the monitor's viewport getting changed, but the underlying screen dimensions
stay the same.

The spec indicates that RRSetCrtcConfig only changes the crtc mode and has no effect
on the screen dimensions, only mentioning that the new crtc must fit entirely within the
screen size. For the size to change, RRSetScreenSize also needs to be called.

This affects Metro Exodus on Linux, when changing the resolution in the in-game settings
Metro gets stuck in a loop waiting for the size of its vulkan surface to change. Because
XRRSetScreenSize is not called the screen size is never changed, the vulkan surface dimensions
do not change, and Metro hangs forever watching for a surface size update that will
never come.

This change disables the CRTC, calls XRRSetScreenSize, and then updates the
CRTC configuration. This fixes changing the resolution from the Metro settings.

Tested with:
Metro Exodus, Portal 2
2021-07-08 08:41:29 -07:00
..
android Android: don't need to set the SurfaceHolder format from java code 2021-04-22 18:06:17 +02:00
arm ARM: NEON assembly optimization for SDL_FillRect 2019-10-24 21:17:52 -04:00
cocoa cocoa: Implement FlashWindow 2021-06-24 13:08:26 -07:00
directfb Expose separate keyboard and mouse grab support 2021-02-10 10:22:17 -05:00
dummy video/dummy: Don't zero out the fake display mode before adding it. 2021-06-17 22:11:10 -04:00
emscripten emscripten: Fix alt key being a nav key 2021-02-13 11:56:01 -05:00
haiku SDL: Updated patches for HAIKU 2021-03-13 18:36:01 -08:00
khronos Updated Vulkan headers to version 1.2.158 2020-10-24 10:46:18 -07:00
kmsdrm s/memcmp/SDL_memcmp/ for conistency 2021-06-24 23:10:56 +03:00
nacl Updated copyright for 2021 2021-01-02 10:25:38 -08:00
offscreen Updated copyright for 2021 2021-01-02 10:25:38 -08:00
os2 OS2_GetDisplayModes: malloc a new copy of mode's driver data. 2021-06-12 14:55:24 +03:00
pandora Removed non-functional window grab implementations 2021-02-10 10:22:16 -05:00
psp Removed non-functional window grab implementations 2021-02-10 10:22:16 -05:00
qnx Added events for dynamically connecting and disconnecting displays, with an iOS implementation 2020-10-08 16:42:20 -07:00
raspberry Removed non-functional window grab implementations 2021-02-10 10:22:16 -05:00
uikit Implemented mouse relative mode for iOS 14.1 and newer 2021-07-08 07:23:29 -07:00
vita Don't hardcode message length 2021-07-01 15:14:49 -07:00
vivante Updated copyright for 2021 2021-01-02 10:25:38 -08:00
wayland wayland: Fix returning to a window from fullscreen without calling SetWindowSize 2021-06-15 09:00:18 -07:00
windows SDL_windowsevents: add support for multiple mice 2021-06-24 12:15:54 -07:00
winrt winrt: Fix support for multiple simultaneous mouse button presses 2021-05-14 13:33:59 -07:00
x11 SetDisplayMode: Call XRRSetScreenSize before setting CRTC config 2021-07-08 08:41:29 -07:00
yuv2rgb Added a single SDL_LEAN_AND_MEAN define to turn on minimal SDL builds 2020-01-23 01:00:52 -08:00
SDL_blit_0.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit_1.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit_A.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit_auto.c Update SDL_blit_auto.c 2021-03-04 14:36:33 +01:00
SDL_blit_auto.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit_copy.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit_copy.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit_N.c Fixed bug 3727 - Blit from RGB555 to ARGB1555 2021-03-11 20:06:09 +01:00
SDL_blit_slow.c Software nearest scaling: start at the middle of pixel 2021-03-04 14:33:56 +01:00
SDL_blit_slow.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_blit.h disable pixman ARM blitters for __aarch64__ | _M_ARM64 2021-02-25 11:38:14 -08:00
SDL_bmp.c Fixed compiler warning on Visual Studio 2021-06-17 11:23:47 -07:00
SDL_clipboard.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_egl_c.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_egl.c egl: Don't crash if we failed halfway through SDL_CreateWindow. 2021-05-11 14:08:17 -04:00
SDL_fillrect.c SDL_fillrect.c: updated SSE_BEGIN macro for windows clang-cl 2021-03-04 18:27:56 +03:00
SDL_pixels_c.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_pixels.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_rect_c.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_rect.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_RLEaccel_c.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_RLEaccel.c Error missing 'flags' initialization (see bug #2881) 2021-04-28 23:40:26 +02:00
SDL_shape_internals.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_shape.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_stretch.c Software nearest scaling: start at the middle of pixel 2021-03-04 14:33:56 +01:00
SDL_surface.c SDL_ConvertColorkeyToAlpha: remove and clarify a FIXME 2021-02-10 10:22:19 -05:00
SDL_sysvideo.h Don't skip sending wakeups for the current thread 2021-06-05 14:35:21 -07:00
SDL_video.c Implement bare minimum for SDL_FlashWindow 2021-06-04 15:07:55 -07:00
SDL_vulkan_internal.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_vulkan_utils.c Fixed bug #4337 - compilation of 'SDL_vulkan_utils' fails with 'VK_ERROR_INCOMPATIBLE_VERSION_KHR' undeclared 2021-04-29 22:25:00 +02:00
SDL_yuv_c.h Updated copyright for 2021 2021-01-02 10:25:38 -08:00
SDL_yuv.c Updated copyright for 2021 2021-01-02 10:25:38 -08:00
sdlgenblit.pl Software nearest scaling: start at the middle of pixel 2021-03-04 14:33:56 +01:00