summaryrefslogtreecommitdiff
path: root/test/unbounded-operator.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2006-07-31 15:17:15 -0400
committerBehdad Esfahbod <behdad@behdad.org>2006-07-31 15:17:15 -0400
commit2fa709d6af58713f7b362748a728a6f8c983d2ec (patch)
treee20d9d932d74d48d5af323339156d66f657f5abf /test/unbounded-operator.c
parent9fcb3c32c1f16fe6ab913e27eb54d18b7d9a06b0 (diff)
downloadcairo-2fa709d6af58713f7b362748a728a6f8c983d2ec.tar.gz
Set font options in the test context and make tests not do that
This should help with not requiring many backend-specific reference images, and some should be removed now.
Diffstat (limited to 'test/unbounded-operator.c')
-rw-r--r--test/unbounded-operator.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/unbounded-operator.c b/test/unbounded-operator.c
index 70dab83fe..d3a6f3542 100644
--- a/test/unbounded-operator.c
+++ b/test/unbounded-operator.c
@@ -145,21 +145,12 @@ static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
int i, j, x, y;
- cairo_font_options_t *font_options;
cairo_pattern_t *pattern;
cairo_select_font_face (cr, "Bitstream Vera Sans",
CAIRO_FONT_SLANT_NORMAL,
CAIRO_FONT_WEIGHT_NORMAL);
- font_options = cairo_font_options_create ();
-
- cairo_font_options_set_hint_style (font_options, CAIRO_HINT_STYLE_NONE);
- cairo_font_options_set_antialias (font_options, CAIRO_ANTIALIAS_GRAY);
-
- cairo_set_font_options (cr, font_options);
- cairo_font_options_destroy (font_options);
-
for (j = 0; j < ARRAY_SIZE (draw_funcs); j++) {
for (i = 0; i < ARRAY_SIZE (operators); i++) {
x = i * (WIDTH + PAD) + PAD;