OSDN Git Service

egl_dri2: Put the _eglError call in the case switch case
authorKristian Høgsberg <krh@bitplanet.net>
Wed, 11 Jan 2012 17:36:37 +0000 (12:36 -0500)
committerKristian Høgsberg <krh@bitplanet.net>
Wed, 11 Jan 2012 17:44:58 +0000 (12:44 -0500)
Log an error in case we get an unknown format, not in case for XRGB32.
I botched the edit of Roberts patch.

src/egl/drivers/dri2/egl_dri2.c

index a7ebf59..5fff7e1 100644 (file)
@@ -1099,11 +1099,11 @@ dri2_create_image_wayland_wl_buffer(_EGLDisplay *disp, _EGLContext *ctx,
       format = __DRI_IMAGE_FORMAT_ARGB8888;
       break;
    case WL_DRM_FORMAT_XRGB32:
-      _eglError(EGL_BAD_PARAMETER,
-               "dri2_create_image_khr: unsupported wl_buffer format");
       format = __DRI_IMAGE_FORMAT_XRGB8888;
       break;
    default:
+      _eglError(EGL_BAD_PARAMETER,
+               "dri2_create_image_khr: unsupported wl_buffer format");
       return NULL;
    }