wayland: Only try and resize the framebuffer if there is a valid framebuffer

This commit is contained in:
Rob Bradford 2012-03-20 13:31:28 +00:00
parent 1e639cd0ee
commit 568951b8ac

View File

@ -160,8 +160,11 @@ clutter_stage_wayland_resize (ClutterStageWindow *stage_window,
ClutterStageCogl *stage_cogl = CLUTTER_STAGE_COGL (stage_window);
/* Resize preserving top left */
cogl_wayland_onscreen_resize (stage_cogl->onscreen, width, height, 0, 0);
_clutter_stage_window_redraw (stage_window);
if (stage_cogl->onscreen)
{
cogl_wayland_onscreen_resize (stage_cogl->onscreen, width, height, 0, 0);
_clutter_stage_window_redraw (stage_window);
}
}
static void