From 332fabcb8a0ff3957f0198ad3b93b4f3861f7eba Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sun, 12 Feb 2017 19:17:33 -0600 Subject: SDL: Only recreate SDL2 window when necessary Destroying and recreating the SDL window whenever the video mode changes in SDL2 is not necessary and causes several problems: 1. In windowed mode, the game window shifts position; 2. In fullscreen mode in macOS, every time the window is recreated, it causes the OS to play its switch-to-fullscreen animation again and emit system alert noises; 3. The window content flickers; and 4. The engine loses events from the old destroyed window. This patch changes the SDL backend code to avoid destroying and recreating the SDL window when using SDL2, except when switching OpenGL modes, since there is no way to change the OpenGL feature of a window. There are still some outstanding issues with OpenGL where window size ends up getting reset even though the user has resized it; this will probably need to be addressed at some point in another patch. Thanks to @bgK and @criezy for their feedback which made this patch much better. Co-Authored-By: Bastien Bouclet --- backends/platform/sdl/sdl-window.cpp | 63 ++++++++++++++++++++++++++++++------ 1 file changed, 54 insertions(+), 9 deletions(-) (limited to 'backends/platform/sdl/sdl-window.cpp') diff --git a/backends/platform/sdl/sdl-window.cpp b/backends/platform/sdl/sdl-window.cpp index 609186a061..543320f3be 100644 --- a/backends/platform/sdl/sdl-window.cpp +++ b/backends/platform/sdl/sdl-window.cpp @@ -28,9 +28,12 @@ #include "icons/scummvm.xpm" +static const uint32 fullscreenMask = SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_FULLSCREEN; + SdlWindow::SdlWindow() #if SDL_VERSION_ATLEAST(2, 0, 0) - : _window(nullptr), _inputGrabState(false), _windowCaption("ScummVM") + : _window(nullptr), _inputGrabState(false), _windowCaption("ScummVM"), + _lastFlags(0), _lastX(SDL_WINDOWPOS_UNDEFINED), _lastY(SDL_WINDOWPOS_UNDEFINED) #endif { } @@ -199,25 +202,67 @@ SDL_Surface *copySDLSurface(SDL_Surface *src) { return res; } -bool SdlWindow::createWindow(int width, int height, uint32 flags) { - destroyWindow(); - +bool SdlWindow::createOrUpdateWindow(int width, int height, uint32 flags) { if (_inputGrabState) { flags |= SDL_WINDOW_INPUT_GRABBED; } - _window = SDL_CreateWindow(_windowCaption.c_str(), SDL_WINDOWPOS_UNDEFINED, - SDL_WINDOWPOS_UNDEFINED, width, height, flags); + // SDL_WINDOW_RESIZABLE can also be updated without recreating the window + // starting with SDL 2.0.5, but it is not treated as updateable here + // because: + // 1. It is currently only changed in conjunction with the SDL_WINDOW_OPENGL + // flag, so the window will always be recreated anyway when changing + // resizability; and + // 2. Users (particularly on Windows) will sometimes swap older SDL DLLs + // to avoid bugs, which would be impossible if the feature was enabled + // at compile time using SDL_VERSION_ATLEAST. + const uint32 updateableFlagsMask = fullscreenMask | SDL_WINDOW_INPUT_GRABBED; + + const uint32 oldNonUpdateableFlags = _lastFlags & ~updateableFlagsMask; + const uint32 newNonUpdateableFlags = flags & ~updateableFlagsMask; + + if (!_window || oldNonUpdateableFlags != newNonUpdateableFlags) { + destroyWindow(); + _window = SDL_CreateWindow(_windowCaption.c_str(), _lastX, + _lastY, width, height, flags); + if (_window) { + setupIcon(); + } + } else { + const uint32 fullscreenFlags = flags & fullscreenMask; + + if (fullscreenFlags) { + SDL_DisplayMode fullscreenMode; + fullscreenMode.w = width; + fullscreenMode.h = height; + fullscreenMode.driverdata = nullptr; + fullscreenMode.format = 0; + fullscreenMode.refresh_rate = 0; + SDL_SetWindowDisplayMode(_window, &fullscreenMode); + } else { + SDL_SetWindowSize(_window, width, height); + } + + SDL_SetWindowFullscreen(_window, fullscreenFlags); + SDL_SetWindowGrab(_window, (flags & SDL_WINDOW_INPUT_GRABBED) ? SDL_TRUE : SDL_FALSE); + } + if (!_window) { return false; } - setupIcon(); + + _lastFlags = flags; return true; } void SdlWindow::destroyWindow() { - SDL_DestroyWindow(_window); - _window = nullptr; + if (_window) { + if (!(_lastFlags & fullscreenMask)) { + SDL_GetWindowPosition(_window, &_lastX, &_lastY); + } + SDL_DestroyWindow(_window); + _window = nullptr; + } } #endif -- cgit v1.2.3