kms_rotation_crc: Style issue: binary operators need spaces before and after
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 8 Jul 2014 16:51:07 +0000 (17:51 +0100)
committerDamien Lespiau <damien.lespiau@intel.com>
Fri, 11 Jul 2014 14:12:22 +0000 (15:12 +0100)
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
tests/kms_rotation_crc.c

index f062b52..341f7bc 100644 (file)
@@ -83,10 +83,10 @@ paint_squares(data_t *data, struct igt_fb *fb, drmModeModeInfo *mode,
        }
 
        /* Paint with 4 squares of Red, Green, White, Blue Clockwise */
-       igt_paint_color(cr, 0, 0, w/2, h/2, 1.0, 0.0, 0.0);
-       igt_paint_color(cr, (w/2)-1, 0, w/2, h/2, 0.0, 1.0, 0.0);
-       igt_paint_color(cr, 0, (h/2)-1, w/2, h/2, 0.0, 0.0, 1.0);
-       igt_paint_color(cr, (w/2)-1, (h/2)-1, w/2, h/2, 1.0, 1.0, 1.0);
+       igt_paint_color(cr, 0, 0, w / 2, h / 2, 1.0, 0.0, 0.0);
+       igt_paint_color(cr, (w / 2) - 1, 0, w / 2, h / 2, 0.0, 1.0, 0.0);
+       igt_paint_color(cr, 0, (h / 2) - 1, w / 2, h / 2, 0.0, 0.0, 1.0);
+       igt_paint_color(cr, (w / 2) - 1, (h / 2) - 1, w / 2, h / 2, 1.0, 1.0, 1.0);
 
        cairo_destroy(cr);
 }