From 929fd90e05159796b8572888d386aaf6991dde07 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Sat, 5 Apr 2014 17:19:34 +0200 Subject: [PATCH] Wayland: Resize windows with 0x0 requested size to screen size This makes it in line with other platforms, where SDL_CreateWindow() with width=0, height=0 and SDL_WINDOW_FULLSCREEN opens a fullscreen window. --- src/video/wayland/SDL_waylandwindow.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/video/wayland/SDL_waylandwindow.c b/src/video/wayland/SDL_waylandwindow.c index f7b339cfcb918..c040ca97cc8d7 100644 --- a/src/video/wayland/SDL_waylandwindow.c +++ b/src/video/wayland/SDL_waylandwindow.c @@ -164,6 +164,18 @@ int Wayland_CreateWindow(_THIS, SDL_Window *window) c->surface_extension, data->surface); } #endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */ + + /** + * If the user specified 0x0 as the size (turned to 1x1 by SDL_CreateWindow + * in SDL_video.c), we want to make the window fill the whole screen + **/ + if (window->w == 1) { + window->w = c->screen_allocation.width; + } + if (window->h == 1) { + window->h = c->screen_allocation.height; + } + data->egl_window = WAYLAND_wl_egl_window_create(data->surface, window->w, window->h);