egl: fix whitespace issues from eglimage code
authorTapani Pälli <tapani.palli@intel.com>
Mon, 24 Jul 2017 11:10:50 +0000 (14:10 +0300)
committerTapani Pälli <tapani.palli@intel.com>
Tue, 25 Jul 2017 09:54:33 +0000 (12:54 +0300)
Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
src/egl/main/eglimage.c

index 72a556e8dbdfec44906656d7052a1861571d0f1d..46bf0c50f07cfe53fbb0ba62685239e1aa9a18c8 100644 (file)
@@ -41,7 +41,7 @@ _eglParseKHRImageAttribs(_EGLImageAttribs *attrs, _EGLDisplay *dpy,
    switch (attr) {
    case EGL_IMAGE_PRESERVED_KHR:
       if (!dpy->Extensions.KHR_image_base)
-          return EGL_BAD_PARAMETER;
+         return EGL_BAD_PARAMETER;
 
       attrs->ImagePreserved = val;
       break;
@@ -144,9 +144,9 @@ _eglParseEXTImageDmaBufImportAttribs(_EGLImageAttribs *attrs, _EGLDisplay *dpy,
       attrs->DMABufPlanePitches[0].IsPresent = EGL_TRUE;
       break;
    case EGL_DMA_BUF_PLANE1_FD_EXT:
-       attrs->DMABufPlaneFds[1].Value = val;
-       attrs->DMABufPlaneFds[1].IsPresent = EGL_TRUE;
-       break;
+      attrs->DMABufPlaneFds[1].Value = val;
+      attrs->DMABufPlaneFds[1].IsPresent = EGL_TRUE;
+      break;
    case EGL_DMA_BUF_PLANE1_OFFSET_EXT:
       attrs->DMABufPlaneOffsets[1].Value = val;
       attrs->DMABufPlaneOffsets[1].IsPresent = EGL_TRUE;
@@ -288,30 +288,30 @@ _eglParseImageAttribList(_EGLImageAttribs *attrs, _EGLDisplay *dpy,
 
       err = _eglParseKHRImageAttribs(attrs, dpy, attr, val);
       if (err == EGL_SUCCESS)
-          continue;
+         continue;
 
       err = _eglParseMESADrmImageAttribs(attrs, dpy, attr, val);
       if (err == EGL_SUCCESS)
-          continue;
+         continue;
 
       err = _eglParseWLBindWaylandDisplayAttribs(attrs, dpy, attr, val);
       if (err == EGL_SUCCESS)
-          continue;
+         continue;
 
       err = _eglParseEXTImageDmaBufImportAttribs(attrs, dpy, attr, val);
       if (err == EGL_SUCCESS)
-          continue;
+         continue;
 
       /* EXT_image_dma_buf_import states that if invalid value is provided for
        * its attributes, we should return EGL_BAD_ATTRIBUTE.
        * Bail out ASAP, since follow-up calls can return another EGL_BAD error.
        */
       if (err == EGL_BAD_ATTRIBUTE)
-          return _eglError(err, __func__);
+         return _eglError(err, __func__);
 
       err = _eglParseEXTImageDmaBufImportModifiersAttribs(attrs, dpy, attr, val);
       if (err == EGL_SUCCESS)
-          continue;
+         continue;
 
       return _eglError(err, __func__);
    }