diff --git a/clutter/clutter/cogl/clutter-stage-cogl.c b/clutter/clutter/cogl/clutter-stage-cogl.c index 1ed7e01c4..80ed474a9 100644 --- a/clutter/clutter/cogl/clutter-stage-cogl.c +++ b/clutter/clutter/cogl/clutter-stage-cogl.c @@ -513,8 +513,8 @@ fill_current_damage_history_and_step (ClutterStageView *view) *current_fb_damage = (cairo_rectangle_int_t) { .x = 0, .y = 0, - .width = view_rect.width * fb_scale, - .height = view_rect.height * fb_scale + .width = ceilf (view_rect.width * fb_scale), + .height = ceilf (view_rect.height * fb_scale) }; view_priv->damage_index++; }