diff options
author | Mark Janes <[email protected]> | 2017-08-30 08:45:36 -0700 |
---|---|---|
committer | Mark Janes <[email protected]> | 2017-08-30 08:45:36 -0700 |
commit | 8c9df0daf20206fafb7df77b1edcbc41b8e91372 (patch) | |
tree | cd2dc03fab1854604010cad0be163125675c9fd6 /src/egl/drivers/dri2/platform_x11.c | |
parent | 783f2b70c0013c4079af842c5e6e91f3ff9f5535 (diff) |
Revert "egl: Allow creation of per surface out fence"
This reverts commit 13c23b19d0b3b965d666498eb759e63fc4a625d9.
Mesa CI was brought down by this commit, with:
mesa/drivers/dri/i965/brw_sync.c:491: brw_dri_create_fence_fd:
Assertion `brw->screen->has_exec_fence' failed.
Diffstat (limited to 'src/egl/drivers/dri2/platform_x11.c')
-rw-r--r-- | src/egl/drivers/dri2/platform_x11.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/egl/drivers/dri2/platform_x11.c b/src/egl/drivers/dri2/platform_x11.c index cfdf76ee8d1..062c8a4e198 100644 --- a/src/egl/drivers/dri2/platform_x11.c +++ b/src/egl/drivers/dri2/platform_x11.c @@ -232,7 +232,7 @@ dri2_x11_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type, return NULL; } - if (!dri2_init_surface(&dri2_surf->base, disp, type, conf, attrib_list, false)) + if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list)) goto cleanup_surf; dri2_surf->region = XCB_NONE; @@ -394,7 +394,6 @@ dri2_x11_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf) if (surf->Type == EGL_PBUFFER_BIT) xcb_free_pixmap (dri2_dpy->conn, dri2_surf->drawable); - dri2_fini_surface(surf); free(surf); return EGL_TRUE; |