From 59d4bc8c48836ff86052ea62f6ce24e1f2402d02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20K=C3=B6nig?= Date: Wed, 24 Oct 2012 11:18:40 +0200 Subject: [PATCH] vl: fix the dri winsys helper screen init MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- src/gallium/auxiliary/vl/vl_winsys_dri.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/auxiliary/vl/vl_winsys_dri.c b/src/gallium/auxiliary/vl/vl_winsys_dri.c index 8e4e026a211..95aabac17e0 100644 --- a/src/gallium/auxiliary/vl/vl_winsys_dri.c +++ b/src/gallium/auxiliary/vl/vl_winsys_dri.c @@ -333,6 +333,8 @@ vl_screen_create(Display *display, int screen) goto free_screen; s = xcb_setup_roots_iterator(xcb_get_setup(scrn->conn)); + while (screen--) + xcb_screen_next(&s); connect_cookie = xcb_dri2_connect_unchecked(scrn->conn, s.data->root, XCB_DRI2_DRIVER_TYPE_DRI); connect = xcb_dri2_connect_reply(scrn->conn, connect_cookie, NULL); if (connect == NULL || connect->driver_name_length + connect->device_name_length == 0) -- 2.30.2