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
24
static void diamond (cairo_t *cr)
34
{
35
24
    cairo_move_to (cr, WIDTH/2, 0);
36
24
    cairo_line_to (cr, WIDTH, HEIGHT/2);
37
24
    cairo_line_to (cr, WIDTH/2, HEIGHT);
38
24
    cairo_line_to (cr, 0, HEIGHT/2);
39
24
    cairo_close_path (cr);
40
24
}
41

            
42
3
static void background (cairo_t *cr)
43
{
44
3
    cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
45
3
    cairo_set_source_rgb (cr, 1,1,1);
46
3
    cairo_paint (cr);
47
3
    cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
48
3
    cairo_set_source_rgb (cr, 0,0,0);
49
3
}
50

            
51
static cairo_test_status_t
52
3
draw (cairo_t *cr, int width, int height)
53
{
54
3
    background (cr);
55

            
56
    /* completely overlapping diamonds */
57
3
    cairo_save (cr);
58
3
    diamond (cr);
59
3
    cairo_clip (cr);
60
3
    diamond (cr);
61
3
    cairo_clip (cr);
62
3
    cairo_paint (cr);
63
3
    cairo_restore (cr);
64

            
65
3
    cairo_translate (cr, WIDTH, 0);
66

            
67
    /* partial overlap */
68
3
    cairo_save (cr);
69
3
    cairo_translate (cr, -WIDTH/4, 0);
70
3
    diamond (cr);
71
3
    cairo_clip (cr);
72
3
    cairo_translate (cr, WIDTH/2, 0);
73
3
    diamond (cr);
74
3
    cairo_clip (cr);
75
3
    cairo_paint (cr);
76
3
    cairo_restore (cr);
77

            
78
3
    cairo_translate (cr, WIDTH, 0);
79

            
80
    /* no overlap, but the bounding boxes must */
81
3
    cairo_save (cr);
82
3
    cairo_translate (cr, -WIDTH/2 + 2, -2);
83
3
    diamond (cr);
84
3
    cairo_clip (cr);
85
3
    cairo_translate (cr, WIDTH - 4, 4);
86
3
    diamond (cr);
87
3
    cairo_clip (cr);
88
3
    cairo_paint (cr);
89
3
    cairo_restore (cr);
90

            
91
3
    cairo_translate (cr, WIDTH, 0);
92

            
93
    /* completely disjoint */
94
3
    cairo_save (cr);
95
3
    cairo_translate (cr, -WIDTH/2 - 1, 0);
96
3
    diamond (cr);
97
3
    cairo_clip (cr);
98
3
    cairo_translate (cr, WIDTH + 2, 0);
99
3
    diamond (cr);
100
3
    cairo_clip (cr);
101
3
    cairo_paint (cr);
102
3
    cairo_restore (cr);
103

            
104
3
    return CAIRO_TEST_SUCCESS;
105
}
106

            
107
1
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)