Skip to content

Commit

Permalink
wayland: Work around a GNOME xdg_output scaling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
flibitijibibo committed Mar 26, 2022
1 parent 94ed6b0 commit 40417b1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
24 changes: 21 additions & 3 deletions src/video/wayland/SDL_waylandvideo.c
Expand Up @@ -294,6 +294,7 @@ xdg_output_handle_logical_position(void *data, struct zxdg_output_v1 *xdg_output

driverdata->x = x;
driverdata->y = y;
driverdata->has_logical_position = SDL_TRUE;
}

static void
Expand All @@ -302,8 +303,25 @@ xdg_output_handle_logical_size(void *data, struct zxdg_output_v1 *xdg_output,
{
SDL_WaylandOutputData* driverdata = data;

if (driverdata->width != 0 && driverdata->height != 0) {
/* FIXME: GNOME has a bug where the logical size does not account for
* scale, resulting in bogus viewport sizes.
*
* Until this is fixed, validate the scale, then override if necessary.
* -flibit
*/
const float scale = (float) driverdata->width / (float) width;
if (scale != driverdata->scale_factor) {
SDL_LogWarn(
SDL_LOG_CATEGORY_VIDEO,
"xdg_output scale did not match, overriding with wl_output scale"
);
return;
}
}
driverdata->width = width;
driverdata->height = height;
driverdata->has_logical_size = SDL_TRUE;
}

static void
Expand Down Expand Up @@ -371,7 +389,7 @@ display_handle_geometry(void *data,
}

/* Apply the change from wl-output only if xdg-output is not supported */
if (driverdata->xdg_output) {
if (driverdata->has_logical_position) {
driverdata->x = x;
driverdata->y = y;
}
Expand Down Expand Up @@ -428,7 +446,7 @@ display_handle_mode(void *data,
* Don't rotate this yet, wl-output coordinates are transformed in
* handle_done and xdg-output coordinates are pre-transformed.
*/
if (!driverdata->xdg_output) {
if (!driverdata->has_logical_size) {
driverdata->width = width;
driverdata->height = height;
}
Expand Down Expand Up @@ -485,7 +503,7 @@ display_handle_done(void *data,
SDL_zero(mode);
mode.format = SDL_PIXELFORMAT_RGB888;

if (driverdata->xdg_output) {
if (driverdata->has_logical_size) {
/* xdg-output dimensions are already transformed, so no need to rotate. */
mode.w = driverdata->width;
mode.h = driverdata->height;
Expand Down
1 change: 1 addition & 0 deletions src/video/wayland/SDL_waylandvideo.h
Expand Up @@ -105,6 +105,7 @@ struct SDL_WaylandOutputData {
SDL_DisplayOrientation orientation;
int physical_width, physical_height;
float ddpi, hdpi, vdpi;
SDL_bool has_logical_position, has_logical_size;
int index;
SDL_VideoDisplay placeholder;
int wl_output_done_count;
Expand Down

0 comments on commit 40417b1

Please sign in to comment.