diff --git a/clutter/wayland/clutter-stage-wayland.c b/clutter/wayland/clutter-stage-wayland.c index 4c3e0c3e0..a9658bfca 100644 --- a/clutter/wayland/clutter-stage-wayland.c +++ b/clutter/wayland/clutter-stage-wayland.c @@ -229,6 +229,12 @@ clutter_stage_wayland_resize (ClutterStageWindow *stage_window, } } +static gboolean +clutter_stage_wayland_can_clip_redraws (ClutterStageWindow *stage_window) +{ + return TRUE; +} + static void clutter_stage_wayland_init (ClutterStageWayland *stage_wayland) { @@ -245,6 +251,7 @@ clutter_stage_window_iface_init (ClutterStageWindowIface *iface) iface->set_fullscreen = clutter_stage_wayland_set_fullscreen; iface->set_cursor_visible = clutter_stage_wayland_set_cursor_visible; iface->resize = clutter_stage_wayland_resize; + iface->can_clip_redraws = clutter_stage_wayland_can_clip_redraws; } static void