From 0763b978eea5f133e43fb223d50c08fcca5397a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lind?= Date: Thu, 15 Sep 2011 17:36:46 +0200 Subject: wayland: Flush before blocking in swapbuffers. Make sure that we've sent the frame request that we're going to block on. --- src/egl/drivers/dri2/platform_wayland.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c index ff641ee..7a70d8d 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -574,8 +574,11 @@ dri2_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw) struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv); struct wl_callback *callback; - while (dri2_surf->block_swap_buffers) - wl_display_iterate(dri2_dpy->wl_dpy, WL_DISPLAY_READABLE); + if (dri2_surf->block_swap_buffers) { + wl_display_flush(dri2_dpy->wl_dpy); + while (dri2_surf->block_swap_buffers) + wl_display_iterate(dri2_dpy->wl_dpy, WL_DISPLAY_READABLE); + } dri2_surf->block_swap_buffers = EGL_TRUE; callback = wl_surface_frame(dri2_surf->wl_win->surface); -- cgit v1.1