egl/surfaceless: trivial coding style fixes
authorEmil Velikov <emil.velikov@collabora.com>
Tue, 16 Aug 2016 17:08:13 +0000 (18:08 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Fri, 14 Oct 2016 11:41:48 +0000 (12:41 +0100)
Remove a few gratious blank lines and use the correct level of
indentation.

Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
src/egl/drivers/dri2/egl_dri2.h
src/egl/drivers/dri2/platform_surfaceless.c

index b1cbf94..f51c3c6 100644 (file)
@@ -304,7 +304,6 @@ struct dri2_egl_surface
       __DRIimage           *front;
       unsigned int         visual;
 #endif
-
 };
 
 struct dri2_egl_config
index c75a895..f613c03 100644 (file)
@@ -180,15 +180,12 @@ dri2_surfaceless_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
 static EGLBoolean
 surfaceless_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *dpy)
 {
-
    struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
-
    static const unsigned int visuals[3][4] = {
       { 0xff0000, 0xff00, 0xff, 0xff000000 },   // ARGB8888
       { 0xff0000, 0xff00, 0xff, 0x0 },          // RGB888
       { 0xf800, 0x7e0, 0x1f, 0x0  },            // RGB565
    };
-
    unsigned int count, i, j;
 
    count = 0;
@@ -205,7 +202,7 @@ surfaceless_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *dpy)
    }
 
    if (!count)
-         _eglLog(_EGL_DEBUG, "Can't create surfaceless visuals");
+      _eglLog(_EGL_DEBUG, "Can't create surfaceless visuals");
 
    return (count != 0);
 }