From: Tapani Pälli Date: Fri, 4 May 2018 05:28:50 +0000 (+0300) Subject: egl: add EGL_BAD_MATCH error case for surfaceless and android X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=affe63b1da25dc7038499b6884523384684d70a8;p=mesa.git egl: add EGL_BAD_MATCH error case for surfaceless and android Just like is done for other backends when suitable config is not found (added in fd4eba4929). Signed-off-by: Tapani Pälli Reviewed-by: Juan A. Suarez --- diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index 7f1a496ea24..1d6ed92bd61 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -337,8 +337,10 @@ droid_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type, config = dri2_get_dri_config(dri2_conf, type, dri2_surf->base.GLColorspace); - if (!config) + if (!config) { + _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration"); goto cleanup_surface; + } if (dri2_dpy->image_driver) createNewDrawable = dri2_dpy->image_driver->createNewDrawable; diff --git a/src/egl/drivers/dri2/platform_surfaceless.c b/src/egl/drivers/dri2/platform_surfaceless.c index 70b302c0ce4..a0348a5e954 100644 --- a/src/egl/drivers/dri2/platform_surfaceless.c +++ b/src/egl/drivers/dri2/platform_surfaceless.c @@ -130,8 +130,10 @@ dri2_surfaceless_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type, config = dri2_get_dri_config(dri2_conf, type, dri2_surf->base.GLColorspace); - if (!config) + if (!config) { + _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration"); goto cleanup_surface; + } dri2_surf->dri_drawable = dri2_dpy->image_driver->createNewDrawable(dri2_dpy->dri_screen, config,