Skip to content

Commit

Permalink
test/halo: Transformation seems key to the bug...
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wilson committed Jun 17, 2010
1 parent cb28e0b commit 1636476
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions test/halo.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,42 @@ 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 */
Expand Down

0 comments on commit 1636476

Please sign in to comment.