summaryrefslogtreecommitdiff
path: root/test/transforms.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/transforms.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/transforms.c')
-rw-r--r--test/transforms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transforms.c b/test/transforms.c
index 9b1254aaf..2c7556a9d 100644
--- a/test/transforms.c
+++ b/test/transforms.c
@@ -42,7 +42,7 @@ draw_L_shape (cairo_t *cr)
cairo_rel_line_to (cr, 5, 0);
cairo_save (cr);
- cairo_default_matrix (cr);
+ cairo_identity_matrix (cr);
cairo_set_line_width (cr, 2.0);
cairo_stroke (cr);
cairo_restore (cr);