summaryrefslogtreecommitdiffstats
path: root/src/egl/drivers/dri2/platform_x11.c
diff options
context:
space:
mode:
authorTapani Pälli <tapani.palli@intel.com>2014-09-29 15:02:57 +0300
committerTapani Pälli <tapani.palli@intel.com>2014-09-29 15:12:11 +0300
commit3386e95994ec77248f71dedf49f996e2078f8cea (patch)
tree4dff0ba0f9d2001900ba2aef18f446dc1ef8b2d1 /src/egl/drivers/dri2/platform_x11.c
parent8c7c0f7114ab27eb4b9448655a93e4ebf33effcf (diff)
downloadexternal_mesa3d-3386e95994ec77248f71dedf49f996e2078f8cea.zip
external_mesa3d-3386e95994ec77248f71dedf49f996e2078f8cea.tar.gz
external_mesa3d-3386e95994ec77248f71dedf49f996e2078f8cea.tar.bz2
egl: setup screen iterator before using it
commit 4ed23fd broke creation of pbuffer surfaces, patch fixes the failure, noticed when running chrome with '--use-gl=egl'. Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Diffstat (limited to 'src/egl/drivers/dri2/platform_x11.c')
-rw-r--r--src/egl/drivers/dri2/platform_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/platform_x11.c b/src/egl/drivers/dri2/platform_x11.c
index 316ac18..f8c4b70 100644
--- a/src/egl/drivers/dri2/platform_x11.c
+++ b/src/egl/drivers/dri2/platform_x11.c
@@ -223,6 +223,7 @@ dri2_x11_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
dri2_surf->region = XCB_NONE;
if (type == EGL_PBUFFER_BIT) {
+ s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
screen = get_xcb_screen(s, dri2_dpy->screen);
if (!screen) {
_eglError(EGL_BAD_NATIVE_WINDOW, "dri2_create_surface");
@@ -230,7 +231,6 @@ dri2_x11_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
}
dri2_surf->drawable = xcb_generate_id(dri2_dpy->conn);
- s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
xcb_create_pixmap(dri2_dpy->conn, conf->BufferSize,
dri2_surf->drawable, screen->root,
dri2_surf->base.Width, dri2_surf->base.Height);