diff options
author | Tapani Pälli <[email protected]> | 2017-07-24 14:10:50 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2017-07-25 12:54:33 +0300 |
commit | 3392026866e00a8d663b001d4240fc292d27319a (patch) | |
tree | 379aafcc4305e0f765a14cd50b38a35956fce389 /src/egl/main/eglimage.c | |
parent | 8dba6f8cf4d1f1d2dfd102c7ddc230995488247c (diff) |
egl: fix whitespace issues from eglimage code
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/main/eglimage.c')
-rw-r--r-- | src/egl/main/eglimage.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/egl/main/eglimage.c b/src/egl/main/eglimage.c index 72a556e8dbd..46bf0c50f07 100644 --- a/src/egl/main/eglimage.c +++ b/src/egl/main/eglimage.c @@ -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__); } |