83eb4df3a68839ffd2c1d1080e569cad39f3ee50
[platform/core/graphics/cairo.git] / test / clip-polygons.c
1 /*
2  * Copyright © 2011 Intel Corporation
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: Chris Wilson <chris@chris-wilson.co.uk>
25  */
26
27 #include "cairo-test.h"
28
29 #define STEP    5
30 #define WIDTH   100
31 #define HEIGHT  100
32
33 static void diamond (cairo_t *cr)
34 {
35     cairo_move_to (cr, WIDTH/2, 0);
36     cairo_line_to (cr, WIDTH, HEIGHT/2);
37     cairo_line_to (cr, WIDTH/2, HEIGHT);
38     cairo_line_to (cr, 0, HEIGHT/2);
39     cairo_close_path (cr);
40 }
41
42 static void background (cairo_t *cr)
43 {
44     cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
45     cairo_set_source_rgb (cr, 1,1,1);
46     cairo_paint (cr);
47     cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
48     cairo_set_source_rgb (cr, 0,0,0);
49 }
50
51 static cairo_test_status_t
52 draw (cairo_t *cr, int width, int height)
53 {
54     background (cr);
55
56     /* completely overlapping diamonds */
57     cairo_save (cr);
58     diamond (cr);
59     cairo_clip (cr);
60     diamond (cr);
61     cairo_clip (cr);
62     cairo_paint (cr);
63     cairo_restore (cr);
64
65     cairo_translate (cr, WIDTH, 0);
66
67     /* partial overlap */
68     cairo_save (cr);
69     cairo_translate (cr, -WIDTH/4, 0);
70     diamond (cr);
71     cairo_clip (cr);
72     cairo_translate (cr, WIDTH/2, 0);
73     diamond (cr);
74     cairo_clip (cr);
75     cairo_paint (cr);
76     cairo_restore (cr);
77
78     cairo_translate (cr, WIDTH, 0);
79
80     /* no overlap, but the bounding boxes must */
81     cairo_save (cr);
82     cairo_translate (cr, -WIDTH/2 + 2, -2);
83     diamond (cr);
84     cairo_clip (cr);
85     cairo_translate (cr, WIDTH - 4, 4);
86     diamond (cr);
87     cairo_clip (cr);
88     cairo_paint (cr);
89     cairo_restore (cr);
90
91     cairo_translate (cr, WIDTH, 0);
92
93     /* completely disjoint */
94     cairo_save (cr);
95     cairo_translate (cr, -WIDTH/2 - 1, 0);
96     diamond (cr);
97     cairo_clip (cr);
98     cairo_translate (cr, WIDTH + 2, 0);
99     diamond (cr);
100     cairo_clip (cr);
101     cairo_paint (cr);
102     cairo_restore (cr);
103
104     return CAIRO_TEST_SUCCESS;
105 }
106
107 CAIRO_TEST (clip_polygons,
108             "Test drawing through through an intersection of polygons",
109             "clip", /* keywords */
110             "target=raster", /* requirements */
111             4*WIDTH, HEIGHT,
112             NULL, draw)