1
0
Fork 0

wayland: Ensure pointer constraint region consistency

Changes in games between fullscreen and windowed modes may trigger
chaotic situations where the buffer and the frame size temporarily
disagree, producing rectangles with negative width/height. This is
usually followed by other updates that bring the pointer constraint
up to date.

This makes cairo panic and return an "error" empty region, which breaks
deeper down when using the region rectangles to apply the pointer
constraint.

If we hit this situation, ignore the frame rectangle, and just go with
the buffer rectangle.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1655>
This commit is contained in:
Carlos Garnacho 2020-12-23 18:58:48 +01:00
parent d439501faf
commit 98ef6d0d05

View file

@ -624,6 +624,8 @@ meta_wayland_pointer_constraint_calculate_effective_region (MetaWaylandPointerCo
frame->right_width);
actual_height = window->buffer_rect.height - (frame->child_y +
frame->bottom_height);
if (actual_width > 0 && actual_height > 0)
{
cairo_region_intersect_rectangle (region, &(cairo_rectangle_int_t) {
.x = frame->child_x,
.y = frame->child_y,
@ -631,6 +633,7 @@ meta_wayland_pointer_constraint_calculate_effective_region (MetaWaylandPointerCo
.height = actual_height
});
}
}
return region;
}