wayland: Refactor the Wayland mode emulation and viewport logic Compartmentalize the fullscreen mode emulation code blocks, unify the windowed/fullscreen viewport logic, consolidate all window geometry code into a central function to eliminate blocks of duplicate code and rename related variables and functions to more explicitly reflect their purpose.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
diff --git a/src/video/wayland/SDL_waylandwindow.c b/src/video/wayland/SDL_waylandwindow.c
index f5d598c..ef70f28 100644
--- a/src/video/wayland/SDL_waylandwindow.c
+++ b/src/video/wayland/SDL_waylandwindow.c
@@ -103,15 +103,7 @@ GetFullScreenDimensions(SDL_Window *window, int *width, int *height, int *drawab
}
}
-static inline SDL_bool
-DesktopIsScaled(SDL_Window *window)
-{
- SDL_WindowData *data = window->driverdata;
-
- return data->scale_factor != 1.0f;
-}
-
-static inline SDL_bool
+SDL_FORCE_INLINE SDL_bool
DesktopIsFractionalScaled(SDL_Window *window)
{
SDL_WindowData *data = window->driverdata;
@@ -125,39 +117,33 @@ DesktopIsFractionalScaled(SDL_Window *window)
return SDL_FALSE;
}
-static SDL_bool
-NeedFullscreenViewport(SDL_Window *window)
+SDL_FORCE_INLINE SDL_bool
+FullscreenModeEmulation(SDL_Window *window)
{
- SDL_WindowData *data = window->driverdata;
- SDL_VideoData *video = data->waylandData;
- SDL_WaylandOutputData *output = (SDL_WaylandOutputData *)SDL_GetDisplayForWindow(window)->driverdata;
-
- int fs_width, fs_height;
+ return (window->flags & SDL_WINDOW_FULLSCREEN) &&
+ ((window->flags & SDL_WINDOW_FULLSCREEN_DESKTOP) != SDL_WINDOW_FULLSCREEN_DESKTOP);
+}
- GetFullScreenDimensions(window, &fs_width, &fs_height, NULL, NULL);
+SDL_bool
+NeedViewport(SDL_Window *window)
+{
+ SDL_WindowData *wind = window->driverdata;
+ SDL_VideoData *video = wind->waylandData;
+ SDL_WaylandOutputData *output = ((SDL_WaylandOutputData *)SDL_GetDisplayForWindow(window)->driverdata);
+ int fs_width, fs_height;
/*
- * Fullscreen needs a viewport:
- * - If the desktop uses fractional scaling
- * - Fullscreen desktop was not requested OR the window is DPI aware
- *
- * - The desktop uses non-fractional scaling
- * - Fullscreen desktop was NOT requested
- *
- * - The desktop is not scaled
- * - A non-native fullscreen mode was explicitly set by the client
+ * A viewport is only required when scaling is enabled and:
+ * - A fullscreen mode is being emulated and the mode does not match the logical desktop dimensions.
+ * - The desktop uses fractional scaling and the high-DPI flag is set.
*/
- if (video->viewporter != NULL && (window->flags & SDL_WINDOW_FULLSCREEN)) {
- if (DesktopIsFractionalScaled(window)) {
- if ((window->flags & SDL_WINDOW_FULLSCREEN_DESKTOP) != SDL_WINDOW_FULLSCREEN_DESKTOP ||
- (window->flags & SDL_WINDOW_ALLOW_HIGHDPI)) {
+ if (video->viewporter != NULL) {
+ if (FullscreenModeEmulation(window)) {
+ GetFullScreenDimensions(window, &fs_width, &fs_height, NULL, NULL);
+ if (fs_width != output->width || fs_height != output->height) {
return SDL_TRUE;
}
- } else if (DesktopIsScaled(window)) {
- if ((window->flags & SDL_WINDOW_FULLSCREEN_DESKTOP) != SDL_WINDOW_FULLSCREEN_DESKTOP) {
- return SDL_TRUE;
- }
- } else if (fs_width != output->native_width && fs_height != output->native_height) {
+ } else if (DesktopIsFractionalScaled(window) && (window->flags & SDL_WINDOW_ALLOW_HIGHDPI)) {
return SDL_TRUE;
}
}
@@ -165,43 +151,37 @@ NeedFullscreenViewport(SDL_Window *window)
return SDL_FALSE;
}
-static inline SDL_bool
-NeedWindowedViewport(SDL_Window *window)
-{
- SDL_WindowData *data = window->driverdata;
- SDL_VideoData *video = data->waylandData;
-
- return !(window->flags & SDL_WINDOW_FULLSCREEN) && (video->viewporter != NULL) &&
- DesktopIsFractionalScaled(window) && (window->flags & SDL_WINDOW_ALLOW_HIGHDPI);
-}
-
-/* Never set a fullscreen window size larger than the desktop. */
+/* If a viewport is active, use the width and height for the window dimensions. */
SDL_FORCE_INLINE int
GetWindowWidth(SDL_Window *window)
{
- return NeedFullscreenViewport(window) ? ((SDL_WaylandOutputData *)SDL_GetDisplayForWindow(window)->driverdata)->width : window->w;
+ SDL_WindowData *data = (SDL_WindowData *)window->driverdata;
+ return SDL_RectEmpty(&data->viewport_rect) ? window->w : data->viewport_rect.w;
}
SDL_FORCE_INLINE int
GetWindowHeight(SDL_Window *window)
{
- return NeedFullscreenViewport(window) ? ((SDL_WaylandOutputData *)SDL_GetDisplayForWindow(window)->driverdata)->height : window->h;
+ SDL_WindowData *data = (SDL_WindowData *)window->driverdata;
+ return SDL_RectEmpty(&data->viewport_rect) ? window->h : data->viewport_rect.h;
}
static void
-GetWindowBufferSize(SDL_Window *window, int *width, int *height)
+GetBufferSize(SDL_Window *window, int *width, int *height)
{
SDL_WindowData *data = window->driverdata;
SDL_WaylandOutputData *output = (SDL_WaylandOutputData *)SDL_GetDisplayForWindow(window)->driverdata;
int buf_width;
int buf_height;
- if (NeedWindowedViewport(window)) {
- const float frac_scale_x = (float)output->native_width / (float)output->width;
- const float frac_scale_y = (float)output->native_height / (float)output->height;
- buf_width = (int)SDL_lroundf(window->w * frac_scale_x);
- buf_height = (int)SDL_lroundf(window->h * frac_scale_y);
+ if (FullscreenModeEmulation(window)) {
+ GetFullScreenDimensions(window, NULL, NULL, &buf_width, &buf_height);
+ } else if (NeedViewport(window)) {
+ const double frac_scale = (double)output->native_width / (double)output->width;
+
+ buf_width = (int)SDL_ceil(window->w * frac_scale);
+ buf_height = (int)SDL_ceil(window->h * frac_scale);
} else { /* Windowed or fullscreen with no viewport */
buf_width = window->w * data->scale_factor;
buf_height = window->h * data->scale_factor;
@@ -216,100 +196,96 @@ GetWindowBufferSize(SDL_Window *window, int *width, int *height)
}
static void
-SetViewport(SDL_Window *window, int src_width, int src_height, int dst_width, int dst_height)
+SetDrawSurfaceViewport(SDL_Window *window, int src_width, int src_height, int dst_width, int dst_height)
{
SDL_WindowData *wind = window->driverdata;
SDL_VideoData *video = wind->waylandData;
if (video->viewporter) {
- if (wind->viewport == NULL) {
- wind->viewport = wp_viewporter_get_viewport(video->viewporter, wind->surface);
+ if (wind->draw_viewport == NULL) {
+ wind->draw_viewport = wp_viewporter_get_viewport(video->viewporter, wind->surface);
}
- wp_viewport_set_source(wind->viewport, wl_fixed_from_int(0), wl_fixed_from_int(0), wl_fixed_from_int(src_width), wl_fixed_from_int(src_height));
- wp_viewport_set_destination(wind->viewport, dst_width, dst_height);
+ wp_viewport_set_source(wind->draw_viewport, wl_fixed_from_int(0), wl_fixed_from_int(0), wl_fixed_from_int(src_width), wl_fixed_from_int(src_height));
+ wp_viewport_set_destination(wind->draw_viewport, dst_width, dst_height);
}
}
static void
-UnsetViewport(SDL_Window *window)
+UnsetDrawSurfaceViewport(SDL_Window *window)
{
SDL_WindowData *wind = window->driverdata;
- if (wind->viewport) {
- wp_viewport_destroy(wind->viewport);
- wind->viewport = NULL;
+ if (wind->draw_viewport) {
+ wp_viewport_destroy(wind->draw_viewport);
+ wind->draw_viewport = NULL;
}
}
static void
-ConfigureViewport(SDL_Window *window)
+ConfigureWindowGeometry(SDL_Window *window)
{
SDL_WindowData *data = window->driverdata;
SDL_VideoData *viddata = data->waylandData;
SDL_WaylandOutputData *output = (SDL_WaylandOutputData *)SDL_GetDisplayForWindow(window)->driverdata;
+ struct wl_region *region;
+
+ /* Set the drawable backbuffer size */
+ GetBufferSize(window, &data->drawable_width, &data->drawable_height);
+
+ if (data->egl_window) {
+ WAYLAND_wl_egl_window_resize(data->egl_window,
+ data->drawable_width,
+ data->drawable_height,
+ 0, 0);
+ }
- if (NeedFullscreenViewport(window)) {
+ if (FullscreenModeEmulation(window) && NeedViewport(window)) {
int fs_width, fs_height;
int src_width, src_height;
GetFullScreenDimensions(window, &fs_width, &fs_height, &src_width, &src_height);
- SetViewport(window, src_width, src_height, output->width, output->height);
- data->damage_region.x = 0;
- data->damage_region.y = 0;
- data->damage_region.w = output->width;
- data->damage_region.h = output->height;
+ /* Set the buffer scale to 1 since a viewport will be used. */
+ wl_surface_set_buffer_scale(data->surface, 1);
+ SetDrawSurfaceViewport(window, src_width, src_height, output->width, output->height);
+
+ data->viewport_rect.x = 0;
+ data->viewport_rect.y = 0;
+ data->viewport_rect.w = output->width;
+ data->viewport_rect.h = output->height;
data->pointer_scale_x = (float)fs_width / (float)output->width;
data->pointer_scale_y = (float)fs_height / (float)output->height;
- } else {
- if (NeedWindowedViewport(window)) {
- int src_width, src_height;
- GetWindowBufferSize(window, &src_width, &src_height);
- SetViewport(window, src_width, src_height, window->w, window->h);
+ region = wl_compositor_create_region(viddata->compositor);
+ wl_region_add(region, data->viewport_rect.x, data->viewport_rect.y,
+ data->viewport_rect.w, data->viewport_rect.h);
+ wl_surface_set_opaque_region(data->surface, region);
+ wl_region_destroy(region);
+ } else {
+ if (NeedViewport(window)) {
+ wl_surface_set_buffer_scale(data->surface, 1);
+ SetDrawSurfaceViewport(window, data->drawable_width, data->drawable_height, window->w, window->h);
} else {
- UnsetViewport(window);
+ UnsetDrawSurfaceViewport(window);
+ wl_surface_set_buffer_scale(data->surface, (int32_t)data->scale_factor);
}
- SDL_zero(data->damage_region);
+ SDL_zero(data->viewport_rect);
data->pointer_scale_x = 1.0f;
data->pointer_scale_y = 1.0f;
- }
- /*
- * If mouse_rect is not empty, re-create the confinement region with the new scale value.
- * If the pointer is locked to the general surface with unspecified coordinates, it will
- * be confined to the viewport region, so no update is required.
- */
- if (!SDL_RectEmpty(&window->mouse_rect)) {
- Wayland_input_confine_pointer(viddata->input, window);
+ region = wl_compositor_create_region(viddata->compositor);
+ wl_region_add(region, 0, 0, window->w, window->h);
+ wl_surface_set_opaque_region(data->surface, region);
+ wl_region_destroy(region);
}
-}
-
-static void
-SetDrawScale(SDL_Window *window)
-{
- SDL_WindowData *data = window->driverdata;
-
- if (NeedFullscreenViewport(window)) {
- int fs_width, fs_height;
- GetFullScreenDimensions(window, &fs_width, &fs_height, &data->drawable_width, &data->drawable_height);
-
- /* Set the buffer scale to 1 since a viewport will be used. */
- wl_surface_set_buffer_scale(data->surface, 1);
- } else {
- GetWindowBufferSize(window, &data->drawable_width, &data->drawable_height);
-
- if (NeedWindowedViewport(window)) {
- /* Set the buffer scale to 1 since a viewport will be used. */
- wl_surface_set_buffer_scale(data->surface, 1);
- } else {
- wl_surface_set_buffer_scale(data->surface, (int32_t)data->scale_factor);
- }
+ /* Recreate the pointer confinement region when the window geometry changes. */
+ if (data->confined_pointer) {
+ Wayland_input_confine_pointer(viddata->input, window);
}
}
@@ -440,9 +416,9 @@ handle_surface_frame_done(void *data, struct wl_callback *cb, uint32_t time)
SDL_WindowData *wind = (SDL_WindowData *) data;
SDL_AtomicSet(&wind->swap_interval_ready, 1); /* mark window as ready to present again. */
- if (!SDL_RectEmpty(&wind->damage_region)) {
- wl_surface_damage(wind->surface, wind->damage_region.x, wind->damage_region.y,
- wind->damage_region.w, wind->damage_region.h);
+ if (!SDL_RectEmpty(&wind->viewport_rect)) {
+ wl_surface_damage(wind->surface, wind->viewport_rect.x, wind->viewport_rect.y,
+ wind->viewport_rect.w, wind->viewport_rect.h);
}
/* reset this callback to fire again once a new frame was presented and compositor wants the next one. */
@@ -598,7 +574,7 @@ handle_configure_xdg_toplevel(void *data,
* UPDATE: Nope, sure enough a compositor sends 0,0. This is a known bug:
* https://bugs.kde.org/show_bug.cgi?id=444962
*/
- if (!NeedFullscreenViewport(window)) {
+ if (!FullscreenModeEmulation(window)) {
if (width != 0 && height != 0 && (window->w != width || window->h != height)) {
window->w = width;
window->h = height;
@@ -781,7 +757,7 @@ decoration_frame_configure(struct libdecor_frame *frame,
* Always assume the configure is wrong.
*/
if (fullscreen) {
- if (!NeedFullscreenViewport(window)) {
+ if (!FullscreenModeEmulation(window)) {
/* FIXME: We have been explicitly told to respect the fullscreen size
* parameters here, even though they are known to be wrong on GNOME at
* bare minimum. If this is wrong, don't blame us, we were explicitly
@@ -1929,7 +1905,6 @@ Wayland_HandleResize(SDL_Window *window, int width, int height, float scale)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
SDL_VideoData *viddata = data->waylandData;
- struct wl_region *region;
if (data->needs_resize_event || window->w != width || window->h != height || data->scale_factor != scale) {
/* We may have already updated window w/h (or only adjusted scale factor),
@@ -1942,20 +1917,8 @@ Wayland_HandleResize(SDL_Window *window, int width, int height, float scale)
data->needs_resize_event = SDL_FALSE;
}
- /* Configure the backbuffer size and scale factors */
- SetDrawScale(window);
-
- if (data->egl_window) {
- WAYLAND_wl_egl_window_resize(data->egl_window,
- data->drawable_width,
- data->drawable_height,
- 0, 0);
- }
-
- region = wl_compositor_create_region(data->waylandData->compositor);
- wl_region_add(region, 0, 0, window->w, window->h);
- wl_surface_set_opaque_region(data->surface, region);
- wl_region_destroy(region);
+ /* Update the window geometry. */
+ ConfigureWindowGeometry(window);
/* XXX: This workarounds issues with commiting buffers with old size after
* already acknowledging the new size, which can cause protocol violations.
@@ -1971,9 +1934,6 @@ Wayland_HandleResize(SDL_Window *window, int width, int height, float scale)
xdg_surface_set_window_geometry(data->shell_surface.xdg.surface, 0, 0,
GetWindowWidth(window), GetWindowHeight(window));
}
-
- /* Update the viewport */
- ConfigureViewport(window);
}
void
@@ -1992,7 +1952,6 @@ void Wayland_SetWindowSize(_THIS, SDL_Window * window)
{
SDL_VideoData *data = _this->driverdata;
SDL_WindowData *wind = window->driverdata;
- struct wl_region *region;
#ifdef HAVE_LIBDECOR_H
struct libdecor_state *state;
#endif
@@ -2008,14 +1967,8 @@ void Wayland_SetWindowSize(_THIS, SDL_Window * window)
}
#endif
- SetDrawScale(window);
-
- if (wind->egl_window) {
- WAYLAND_wl_egl_window_resize(wind->egl_window,
- wind->drawable_width,
- wind->drawable_height,
- 0, 0);
- }
+ /* Update the window geometry. */
+ ConfigureWindowGeometry(window);
#ifdef HAVE_LIBDECOR_H
if (WINDOW_IS_LIBDECOR(data, window) && wind->shell_surface.libdecor.frame) {
@@ -2029,11 +1982,6 @@ void Wayland_SetWindowSize(_THIS, SDL_Window * window)
wind->floating_width = window->windowed.w;
wind->floating_height = window->windowed.h;
- region = wl_compositor_create_region(data->compositor);
- wl_region_add(region, 0, 0, window->w, window->h);
- wl_surface_set_opaque_region(wind->surface, region);
- wl_region_destroy(region);
-
/* Update the geometry which may have been set by a hack in Wayland_HandleResize */
if (
#ifdef HAVE_LIBDECOR_H
@@ -2136,8 +2084,8 @@ void Wayland_DestroyWindow(_THIS, SDL_Window *window)
xdg_activation_token_v1_destroy(wind->activation_token);
}
- if (wind->viewport) {
- wp_viewport_destroy(wind->viewport);
+ if (wind->draw_viewport) {
+ wp_viewport_destroy(wind->draw_viewport);
}
SDL_free(wind->outputs);
diff --git a/src/video/wayland/SDL_waylandwindow.h b/src/video/wayland/SDL_waylandwindow.h
index 74c3c09..e77cb80 100644
--- a/src/video/wayland/SDL_waylandwindow.h
+++ b/src/video/wayland/SDL_waylandwindow.h
@@ -85,7 +85,7 @@ typedef struct {
struct zwp_keyboard_shortcuts_inhibitor_v1 *key_inhibitor;
struct zwp_idle_inhibitor_v1 *idle_inhibitor;
struct xdg_activation_token_v1 *activation_token;
- struct wp_viewport *viewport;
+ struct wp_viewport *draw_viewport;
/* floating dimensions for restoring from maximized and fullscreen */
int floating_width, floating_height;
@@ -103,7 +103,7 @@ typedef struct {
float pointer_scale_x;
float pointer_scale_y;
int drawable_width, drawable_height;
- SDL_Rect damage_region;
+ SDL_Rect viewport_rect;
SDL_bool needs_resize_event;
SDL_bool floating_resize_pending;
} SDL_WindowData;