summaryrefslogtreecommitdiff
path: root/test/gradient-alpha.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-05-06 13:32:53 +0000
committerCarl Worth <cworth@cworth.org>2005-05-06 13:32:53 +0000
commitd7fe527e0f48f23821b7283d8d003fd1f6a3f899 (patch)
treef6c328f6ff82dba87187bc6cfa265a4982c1ddce /test/gradient-alpha.c
parenta790a2ea79507cae9564006ac32e27a0fcca8d60 (diff)
downloadcairo-d7fe527e0f48f23821b7283d8d003fd1f6a3f899.tar.gz
Eliminate the following deprecated functions from cairo's interface:
cairo_copy cairo_get_path cairo_get_path_flat cairo_matrix_create cairo_matrix_destroy cairo_matrix_copy cairo_matrix_get_affine cairo_surface_set_repeat cairo_surface_set_matrix cairo_surface_get_matrix cairo_surface_set_filter cairo_surface_get_filter Also, eliminate all support for compiling against, or running with old, deprecated names for functions. Deal with all of the removals.
Diffstat (limited to 'test/gradient-alpha.c')
-rw-r--r--test/gradient-alpha.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/gradient-alpha.c b/test/gradient-alpha.c
index c42131090..3015728b0 100644
--- a/test/gradient-alpha.c
+++ b/test/gradient-alpha.c
@@ -38,14 +38,14 @@ draw (cairo_t *cr, int width, int height)
gradient = cairo_pattern_create_linear (0, -height,
0, height);
- cairo_pattern_add_color_stop (gradient, 0.0,
- 1.0, 0.0, 0.0,
- 1.0);
- cairo_pattern_add_color_stop (gradient, 1.0,
- 0.0, 0.0, 1.0,
- 0.5);
-
- cairo_set_pattern (cr, gradient);
+ cairo_pattern_add_color_stop_rgba (gradient, 0.0,
+ 1.0, 0.0, 0.0,
+ 1.0);
+ cairo_pattern_add_color_stop_rgba (gradient, 1.0,
+ 0.0, 0.0, 1.0,
+ 0.5);
+
+ cairo_set_source (cr, gradient);
cairo_paint (cr);