summaryrefslogtreecommitdiff
path: root/test/halo.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2010-06-17 10:11:31 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2010-06-17 10:13:18 +0100
commit29b8cfd2b6cf590fcfe64e5ba5b4479c2748ac06 (patch)
tree61c1488e4ba300078c0a7e2603e6de5fe9e884bc /test/halo.c
parenta9a22649e2ffa1cd3720c8555dc3c6aff2040e3d (diff)
downloadcairo-29b8cfd2b6cf590fcfe64e5ba5b4479c2748ac06.tar.gz
test/halo: Remove copied code.
How did that get there? I obviously ran the test to generate the output, so where did it spring as it is the old version of the function? From 16364768d79570e7201a87f0a985c65acaff5560. Mysteries will never cease.
Diffstat (limited to 'test/halo.c')
-rw-r--r--test/halo.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/halo.c b/test/halo.c
index 69a966a80..30064e51a 100644
--- a/test/halo.c
+++ b/test/halo.c
@@ -143,42 +143,6 @@ draw_transform (cairo_t *cr, int width, int height)
return CAIRO_TEST_SUCCESS;
}
-static cairo_test_status_t
-draw_transform (cairo_t *cr, int width, int height)
-{
- const char *string = "0123456789";
- cairo_text_extents_t extents;
-
- cairo_translate (cr, 50, 50);
- cairo_scale (cr, M_SQRT2, M_SQRT2);
-
- cairo_set_source_rgb (cr, 1, 1, 1);
- cairo_paint (cr);
-
- cairo_text_extents (cr, string, &extents);
-
- cairo_set_line_width (cr, 3);
- cairo_move_to (cr, 9, 4 + extents.height);
- halo_around_path (cr, string);
-
- cairo_move_to (cr, 109, 4 + extents.height);
- halo_around_path (cr, string);
-
- cairo_set_font_size (cr, 64);
- cairo_set_line_width (cr, 10);
- cairo_move_to (cr, 8, 70);
- halo_around_path (cr, "6");
- cairo_move_to (cr, 32, 90);
- halo_around_path (cr, "7");
-
- cairo_move_to (cr, 108, 70);
- halo_around_text (cr, "6");
- cairo_move_to (cr, 132, 90);
- halo_around_text (cr, "7");
-
- return CAIRO_TEST_SUCCESS;
-}
-
CAIRO_TEST (halo,
"Check the show_glyphs() vs glyph_path()",
"text", /* keywords */