summaryrefslogtreecommitdiff
path: root/test/mesh-pattern-control-points.c
diff options
context:
space:
mode:
authorAndrea Canciani <ranma42@gmail.com>2011-02-03 22:55:53 +0100
committerAndrea Canciani <ranma42@gmail.com>2011-02-07 20:28:09 +0100
commit5f039f0f894082c383884595220f6f0368ab72cf (patch)
tree4a77d3ac440d12e7138366d531ca7b1d85a9a6bd /test/mesh-pattern-control-points.c
parentfda784793edc3da789954df7fc2f0c86d9ed4f94 (diff)
downloadcairo-5f039f0f894082c383884595220f6f0368ab72cf.tar.gz
mesh: Rename cairo_pattern_mesh_* functions to cairo_mesh_pattern_*
This is consistent with the naming of most cairo types/functions (example: cairo_foo_surface_*). The substitution in the code has been performed using: sed -i 's/cairo_pattern_mesh_/cairo_mesh_pattern_/' <files>
Diffstat (limited to 'test/mesh-pattern-control-points.c')
-rw-r--r--test/mesh-pattern-control-points.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/test/mesh-pattern-control-points.c b/test/mesh-pattern-control-points.c
index 54ff850e0..4d594952c 100644
--- a/test/mesh-pattern-control-points.c
+++ b/test/mesh-pattern-control-points.c
@@ -53,48 +53,48 @@ draw (cairo_t *cr, int width, int height)
cairo_translate (cr, PAD, PAD);
pattern = cairo_pattern_create_mesh ();
- cairo_pattern_mesh_begin_patch (pattern);
+ cairo_mesh_pattern_begin_patch (pattern);
- cairo_pattern_mesh_move_to (pattern, 0, 0);
- cairo_pattern_mesh_line_to (pattern, SIZE, 0);
- cairo_pattern_mesh_line_to (pattern, SIZE, SIZE);
- cairo_pattern_mesh_line_to (pattern, 0, SIZE);
+ cairo_mesh_pattern_move_to (pattern, 0, 0);
+ cairo_mesh_pattern_line_to (pattern, SIZE, 0);
+ cairo_mesh_pattern_line_to (pattern, SIZE, SIZE);
+ cairo_mesh_pattern_line_to (pattern, 0, SIZE);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 0, 1, 0, 0);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 1, 0, 1, 0);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 2, 0, 0, 1);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 3, 1, 1, 0);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 0, 1, 0);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 1);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 0);
- cairo_pattern_mesh_set_control_point (pattern, 0, SIZE * .7, SIZE * .7);
- cairo_pattern_mesh_set_control_point (pattern, 1, SIZE * .9, SIZE * .7);
- cairo_pattern_mesh_set_control_point (pattern, 2, SIZE * .9, SIZE * .9);
- cairo_pattern_mesh_set_control_point (pattern, 3, SIZE * .7, SIZE * .9);
+ cairo_mesh_pattern_set_control_point (pattern, 0, SIZE * .7, SIZE * .7);
+ cairo_mesh_pattern_set_control_point (pattern, 1, SIZE * .9, SIZE * .7);
+ cairo_mesh_pattern_set_control_point (pattern, 2, SIZE * .9, SIZE * .9);
+ cairo_mesh_pattern_set_control_point (pattern, 3, SIZE * .7, SIZE * .9);
- cairo_pattern_mesh_end_patch (pattern);
+ cairo_mesh_pattern_end_patch (pattern);
- cairo_pattern_mesh_begin_patch (pattern);
+ cairo_mesh_pattern_begin_patch (pattern);
- cairo_pattern_mesh_move_to (pattern, SIZE + PAD, 0);
- cairo_pattern_mesh_line_to (pattern, 2*SIZE + PAD, 0);
- cairo_pattern_mesh_line_to (pattern, 2*SIZE + PAD, SIZE);
- cairo_pattern_mesh_line_to (pattern, SIZE + PAD, SIZE);
+ cairo_mesh_pattern_move_to (pattern, SIZE + PAD, 0);
+ cairo_mesh_pattern_line_to (pattern, 2*SIZE + PAD, 0);
+ cairo_mesh_pattern_line_to (pattern, 2*SIZE + PAD, SIZE);
+ cairo_mesh_pattern_line_to (pattern, SIZE + PAD, SIZE);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 0, 1, 0, 0);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 1, 0, 1, 0);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 2, 0, 0, 1);
- cairo_pattern_mesh_set_corner_color_rgb (pattern, 3, 1, 1, 0);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 0, 1, 0);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 1);
+ cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 0);
- cairo_pattern_mesh_end_patch (pattern);
+ cairo_mesh_pattern_end_patch (pattern);
cairo_set_source (cr, pattern);
cairo_paint (cr);
/* mark the location of the control points */
cairo_set_source_rgb (cr, 0, 0, 0);
- cairo_pattern_mesh_get_patch_count (pattern, &num_patches);
+ cairo_mesh_pattern_get_patch_count (pattern, &num_patches);
for (i = 0; i < num_patches; i++) {
for (j = 0; j < 4; j++) {
- cairo_pattern_mesh_get_control_point (pattern, i, j, &x, &y);
+ cairo_mesh_pattern_get_control_point (pattern, i, j, &x, &y);
cairo_rectangle (cr, x - 5, y - 5, 10, 10);
cairo_fill (cr);
}