clutter/cogl: Fix invalidation on non-primary monitors with no buffer age

We passed the view rectangle, we however want a fb-scaled rectangle starting
at 0,0. Fixes invalidation on other than the primary monitor when those
paths are hit.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/897
This commit is contained in:
Carlos Garnacho 2019-10-29 15:54:36 +01:00
parent 40a76590dd
commit 435e1a47ac

View File

@ -943,9 +943,16 @@ clutter_stage_cogl_redraw_view (ClutterStageWindow *stage_window,
}
else
{
cairo_rectangle_int_t clip;
cairo_region_t *view_region;
view_region = cairo_region_create_rectangle (&view_rect);
clip = (cairo_rectangle_int_t) {
.x = 0,
.y = 0,
.width = ceilf (view_rect.width * fb_scale),
.height = ceilf (view_rect.height * fb_scale)
};
view_region = cairo_region_create_rectangle (&clip);
paint_stage (stage_cogl, view, view_region);
cairo_region_destroy (view_region);
}