From: Christian König Date: Wed, 24 Oct 2012 09:18:40 +0000 (+0200) Subject: vl: fix the dri winsys helper screen init X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59d4bc8c48836ff86052ea62f6ce24e1f2402d02;p=mesa.git vl: fix the dri winsys helper screen init Signed-off-by: Christian König --- 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)