1
/*
2
 * Copyright © 2009 Adrian Johnson
3
 *
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use, copy,
8
 * modify, merge, publish, distribute, sublicense, and/or sell copies
9
 * of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be
13
 * included in all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 * SOFTWARE.
23
 *
24
 * Author: Adrian Johnson <ajohnson@redneon.com>
25
 */
26

            
27
#include "cairo-test.h"
28

            
29
#define SIZE 90
30
#define PAD 10
31
#define WIDTH (PAD + 2 * (SIZE + PAD))
32
#define HEIGHT (PAD + SIZE + PAD)
33

            
34

            
35
/*
36
 * This test is designed to paint a two mesh patches. One with default
37
 * control points and one with a control point at a no default
38
 * location.  The control points of both of them are drawn as squares
39
 * to make them visible.
40
 */
41

            
42
static cairo_test_status_t
43
3
draw (cairo_t *cr, int width, int height)
44
{
45
    cairo_pattern_t *pattern;
46
    unsigned int i, j;
47
    unsigned int num_patches;
48
    double x, y;
49

            
50
3
    cairo_set_source_rgb (cr, 1, 1, 1);
51
3
    cairo_paint (cr);
52

            
53
3
    cairo_translate (cr, PAD, PAD);
54

            
55
3
    pattern = cairo_pattern_create_mesh ();
56
3
    cairo_mesh_pattern_begin_patch (pattern);
57

            
58
3
    cairo_mesh_pattern_move_to (pattern,    0,    0);
59
3
    cairo_mesh_pattern_line_to (pattern, SIZE,    0);
60
3
    cairo_mesh_pattern_line_to (pattern, SIZE, SIZE);
61
3
    cairo_mesh_pattern_line_to (pattern,    0, SIZE);
62

            
63
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
64
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 0, 1, 0);
65
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 1);
66
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 0);
67

            
68
3
    cairo_mesh_pattern_set_control_point (pattern, 0, SIZE * .7, SIZE * .7);
69
3
    cairo_mesh_pattern_set_control_point (pattern, 1, SIZE * .9, SIZE * .7);
70
3
    cairo_mesh_pattern_set_control_point (pattern, 2, SIZE * .9, SIZE * .9);
71
3
    cairo_mesh_pattern_set_control_point (pattern, 3, SIZE * .7, SIZE * .9);
72

            
73
3
    cairo_mesh_pattern_end_patch (pattern);
74

            
75
3
    cairo_mesh_pattern_begin_patch (pattern);
76

            
77
3
    cairo_mesh_pattern_move_to (pattern,   SIZE + PAD,    0);
78
3
    cairo_mesh_pattern_line_to (pattern, 2*SIZE + PAD,    0);
79
3
    cairo_mesh_pattern_line_to (pattern, 2*SIZE + PAD, SIZE);
80
3
    cairo_mesh_pattern_line_to (pattern,   SIZE + PAD, SIZE);
81

            
82
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 0, 1, 0, 0);
83
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 1, 0, 1, 0);
84
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 2, 0, 0, 1);
85
3
    cairo_mesh_pattern_set_corner_color_rgb (pattern, 3, 1, 1, 0);
86

            
87
3
    cairo_mesh_pattern_end_patch (pattern);
88

            
89
3
    cairo_set_source (cr, pattern);
90
3
    cairo_paint (cr);
91

            
92
    /* mark the location of the control points */
93
3
    cairo_set_source_rgb (cr, 0, 0, 0);
94
3
    cairo_mesh_pattern_get_patch_count (pattern, &num_patches);
95
9
    for (i = 0; i < num_patches; i++) {
96
30
	for (j = 0; j < 4; j++) {
97
24
	    cairo_mesh_pattern_get_control_point (pattern, i, j, &x, &y);
98
24
	    cairo_rectangle (cr, x - 5, y - 5, 10, 10);
99
24
	    cairo_fill (cr);
100
	}
101
    }
102

            
103
3
    cairo_pattern_destroy (pattern);
104

            
105
3
    return CAIRO_TEST_SUCCESS;
106
}
107

            
108

            
109
1
CAIRO_TEST (mesh_pattern_control_points,
110
	    "Paint mesh pattern with non default control points",
111
	    "mesh, pattern", /* keywords */
112
	    NULL, /* requirements */
113
	    WIDTH, HEIGHT,
114
	    NULL, draw)