1
/*
2
 * Copyright © 2008 Red Hat, Inc.
3
 *
4
 * Permission to use, copy, modify, distribute, and sell this software
5
 * and its documentation for any purpose is hereby granted without
6
 * fee, provided that the above copyright notice appear in all copies
7
 * and that both that copyright notice and this permission notice
8
 * appear in supporting documentation, and that the name of
9
 * Red Hat, Inc. not be used in advertising or publicity pertaining to
10
 * distribution of the software without specific, written prior
11
 * permission. Red Hat, Inc. makes no representations about the
12
 * suitability of this software for any purpose.  It is provided "as
13
 * is" without express or implied warranty.
14
 *
15
 * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17
 * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
18
 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21
 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
 *
23
 * Author: Soren Sandmann <sandmann@redhat.com>
24
 */
25

            
26
#include "cairo-test.h"
27

            
28
#define WIDTH 300
29
#define HEIGHT 300
30

            
31
typedef struct {
32
    double x, y;
33
} point_t;
34

            
35
static void
36
6
paint_curve (cairo_t *cr)
37
{
38
6
    const point_t points[] = {
39
	{ 100, 320 }, { 110, -80 },
40
	{ 180, 60 }, { 300, 170 },
41
	{ 300, -40 }
42
    };
43
    unsigned i;
44

            
45
6
    cairo_set_line_width (cr, 2);
46
6
    cairo_move_to (cr, points[0].x, points[0].y);
47

            
48
12
    for (i = 1; i < ARRAY_LENGTH (points) - 2; i += 3) {
49
6
	cairo_curve_to (cr,
50
6
			points[i].x, points[i].y,
51
6
			points[i + 1].x, points[i + 1].y,
52
6
			points[i + 2].x, points[i + 2].y);
53
    }
54
6
    cairo_set_line_width (cr, 5);
55
6
    cairo_stroke (cr);
56
6
}
57

            
58
static cairo_test_status_t
59
3
draw (cairo_t *cr, int width, int height)
60
{
61
    /* Fill window with light blue */
62
3
    cairo_set_source_rgba (cr, 0.8, 0.8, 1.9, 1.0);
63
3
    cairo_paint (cr);
64

            
65
    /* Paint curve in green */
66
3
    cairo_set_source_rgba (cr, 0.6, 0.8, 0.6, 1.0);
67
3
    paint_curve (cr);
68

            
69
    /* Make clip region */
70
3
    cairo_rectangle (cr, 228, 131, 50, 13);
71
3
    cairo_rectangle (cr, 20, 99, 200, 75);
72
3
    cairo_clip_preserve (cr);
73

            
74
    /* Fill clip region with red */
75
3
    cairo_set_source_rgba (cr, 1.0, 0.5, 0.5, 0.8);
76
3
    cairo_fill (cr);
77

            
78
    /* Paint curve again, this time in blue */
79
3
    cairo_set_source_rgba (cr, 0, 0, 1.0, 1.0);
80
3
    paint_curve (cr);
81

            
82
3
    return CAIRO_TEST_SUCCESS;
83
}
84

            
85
1
CAIRO_TEST (clip_disjoint,
86
	    "Tests stroking through two disjoint clips.",
87
	    "clip, stroke", /* keywords */
88
	    NULL, /* requirements */
89
	    WIDTH, HEIGHT,
90
	    NULL, draw)