From 6dbe94c12cd1b3b912a7083055178e0dfd7372af Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Thu, 14 Feb 2013 20:47:29 -0500 Subject: [PATCH] egl-wayland: Fix left-over wl_display_roundtrip() usage We have to use the EGL wayland event queue for roundtrip, so use the wayland_roundtrip() helper, which does just that. --- src/gallium/state_trackers/egl/wayland/native_shm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/egl/wayland/native_shm.c b/src/gallium/state_trackers/egl/wayland/native_shm.c index 9fb8077..a959237 100644 --- a/src/gallium/state_trackers/egl/wayland/native_shm.c +++ b/src/gallium/state_trackers/egl/wayland/native_shm.c @@ -163,7 +163,7 @@ wayland_shm_display_init_screen(struct native_display *ndpy) return FALSE; if (shmdpy->base.formats == 0) - wl_display_roundtrip(shmdpy->base.dpy); + wayland_roundtrip(shmdpy->base.dpy); if (shmdpy->base.formats == 0) return FALSE; -- 2.7.4