summaryrefslogtreecommitdiff
path: root/test/user-font-rescale.c
diff options
context:
space:
mode:
authorAdrian Johnson <ajohnson@redneon.com>2008-09-16 19:13:50 +0930
committerAdrian Johnson <ajohnson@redneon.com>2008-09-16 19:13:50 +0930
commite880d0f956317c760c565cd69ea2966e7c7f24f1 (patch)
treeeac2e8d55e82cb58a9809b55fcafea3febf094fc /test/user-font-rescale.c
parent840218e0a0747ae741258fad12d420ae59e59d1c (diff)
downloadcairo-e880d0f956317c760c565cd69ea2966e7c7f24f1.tar.gz
Change user-font-rescale test to use opaque colors
The combination of the initial cairo_paint() and the translucent text colors were causing image fallbacks that prevented the PS type 3 font embedding from being tested.
Diffstat (limited to 'test/user-font-rescale.c')
-rw-r--r--test/user-font-rescale.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/user-font-rescale.c b/test/user-font-rescale.c
index 6aaa9adf2..c543daa21 100644
--- a/test/user-font-rescale.c
+++ b/test/user-font-rescale.c
@@ -311,7 +311,7 @@ draw (cairo_t *cr, int width, int height)
cairo_font_extents (cr, &font_extents);
cairo_text_extents (cr, text, &extents);
- cairo_set_source_rgba (cr, 0, 0, 0, 0.5);
+ cairo_set_source_rgb (cr, 0, 0, 0);
cairo_move_to (cr, BORDER, BORDER + font_extents.ascent);
cairo_show_text (cr, text);
@@ -324,7 +324,7 @@ draw (cairo_t *cr, int width, int height)
rescaled = get_user_font_face (cairo_get_font_face (cr), text, old);
cairo_set_font_face (cr, rescaled);
- cairo_set_source_rgba (cr, 0, 0, 1, 0.5);
+ cairo_set_source_rgb (cr, 0, 0, 1);
cairo_move_to (cr, BORDER, BORDER + font_extents.height + 2*BORDER + font_extents.ascent);
cairo_show_text (cr, text);
@@ -336,7 +336,7 @@ draw (cairo_t *cr, int width, int height)
CAIRO_FONT_SLANT_NORMAL,
CAIRO_FONT_WEIGHT_NORMAL);
- cairo_set_source_rgba (cr, 0, 0, 1, 0.5);
+ cairo_set_source_rgb (cr, 0, 0, 1);
cairo_move_to (cr, BORDER, BORDER + 2*font_extents.height + 4*BORDER + font_extents.ascent);
cairo_show_text (cr, text);