summaryrefslogtreecommitdiff
path: root/test/xlib-surface.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 15:25:49 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 15:25:49 -0700
commit80b8deb1e4f9d0b856106031c6a7a629cca7552c (patch)
tree904372df192e3894d3418fd5adaaa0f41487a5f4 /test/xlib-surface.c
parent28d47d332aafa81bcbc669603357298cb0a14322 (diff)
downloadcairo-80b8deb1e4f9d0b856106031c6a7a629cca7552c.tar.gz
Remove extraneous whitespace from "blank" lines.
This patch was produced with the following (GNU) sed script: sed -i -r -e 's/^[ \t]+$//' run on all *.[ch] files within cairo.
Diffstat (limited to 'test/xlib-surface.c')
-rw-r--r--test/xlib-surface.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/xlib-surface.c b/test/xlib-surface.c
index 09b53c840..717978164 100644
--- a/test/xlib-surface.c
+++ b/test/xlib-surface.c
@@ -53,13 +53,13 @@ draw_pattern (cairo_surface_t *surface)
for (i = 1; i <= 3; i++) {
int inset = SIZE / 8 * i;
-
+
cairo_rectangle (cr,
inset, inset,
SIZE - 2 * inset, SIZE - 2 * inset);
cairo_fill (cr);
}
-
+
cairo_destroy (cr);
}
@@ -70,7 +70,7 @@ erase_pattern (cairo_surface_t *surface)
cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
cairo_paint (cr);
-
+
cairo_destroy (cr);
}
@@ -126,7 +126,7 @@ do_test (Display *dpy,
if (set_size)
cairo_xlib_surface_set_size (surface, SIZE, SIZE);
-
+
draw_pattern (surface);
test_surface = cairo_image_surface_create_for_data (test_data,
@@ -154,7 +154,7 @@ do_test (Display *dpy,
if (offscreen) {
size_t offset = 4 * (SIZE * OFFSCREEN_OFFSET + OFFSCREEN_OFFSET);
-
+
result = !buffer_diff_noalpha (reference_data + offset,
test_data + offset,
diff_data + offset,
@@ -190,7 +190,7 @@ static cairo_bool_t
check_visual (Display *dpy)
{
Visual *visual = DefaultVisual (dpy, DefaultScreen (dpy));
-
+
if ((visual->red_mask == 0xff0000 &&
visual->green_mask == 0x00ff00 &&
visual->blue_mask == 0x0000ff) ||
@@ -201,7 +201,7 @@ check_visual (Display *dpy)
else
return 0;
}
-
+
int
main (void)
{
@@ -238,7 +238,7 @@ main (void)
reference_data = malloc (SIZE * SIZE * 4);
test_data = malloc (SIZE * SIZE * 4);
diff_data = malloc (SIZE * SIZE * 4);
-
+
reference_surface = cairo_image_surface_create_for_data (reference_data,
CAIRO_FORMAT_RGB24,
SIZE, SIZE,
@@ -274,6 +274,6 @@ main (void)
cairo_debug_reset_static_data ();
fclose (log_file);
-
+
return result;
}