egl/wayland: delete check for DRI_IMAGE blitImage in drm init

this is always supported

Reviewed-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30472>
This commit is contained in:
Mike Blumenkrantz
2024-07-29 10:03:16 -04:00
committed by Marge Bot
parent c38b9aba0e
commit 60d81e2865

View File

@@ -2324,14 +2324,6 @@ dri2_initialize_wayland_drm(_EGLDisplay *disp)
}
}
if (dri2_dpy->fd_render_gpu != dri2_dpy->fd_display_gpu &&
dri2_dpy->image->blitImage == NULL) {
_eglLog(_EGL_WARNING, "wayland-egl: Different GPU selected, but the "
"Image extension in the driver is not "
"compatible. blitImage() is required");
goto cleanup;
}
dri2_wl_add_configs_for_visuals(disp);
dri2_set_WL_bind_wayland_display(disp);