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

            
27
#include "cairo-test.h"
28

            
29
#define PAD 2
30
#define SIZE 10
31

            
32
typedef void (*path_func_t) (cairo_t *cr);
33

            
34
static void
35
3
rectangle (cairo_t *cr)
36
{
37
3
    cairo_rectangle (cr, PAD, PAD, SIZE, SIZE);
38
3
}
39

            
40
static void
41
3
circle (cairo_t *cr)
42
{
43
3
    cairo_arc (cr,
44
	       PAD + SIZE / 2, PAD + SIZE / 2,
45
	       SIZE / 2,
46
	       0, 2 * M_PI);
47
3
}
48

            
49
/* Given a path-generating function and two opaque patterns, fill and
50
 * stroke the path with the patterns (to an offscreen group), then
51
 * blend the result into the destination with the given alpha
52
 * value.
53
 */
54
static void
55
6
fill_and_stroke_alpha (cairo_t		*cr,
56
		       path_func_t	 path_func,
57
		       cairo_pattern_t	*fill_pattern,
58
		       cairo_pattern_t	*stroke_pattern,
59
		       double		 alpha)
60
{
61
6
    cairo_push_group (cr);
62
    {
63
6
	(path_func) (cr);
64
6
	cairo_set_source (cr, fill_pattern);
65
6
	cairo_fill_preserve (cr);
66
6
	cairo_set_source (cr, stroke_pattern);
67
6
	cairo_stroke (cr);
68
    }
69
6
    cairo_pop_group_to_source (cr);
70
6
    cairo_paint_with_alpha (cr, alpha);
71
6
}
72

            
73
static cairo_test_status_t
74
3
draw (cairo_t *cr, int width, int height)
75
{
76
    cairo_pattern_t *blue;
77
    cairo_pattern_t *red;
78

            
79
3
    blue = cairo_pattern_create_rgb (0.0, 0.0, 1.0);
80
3
    red = cairo_pattern_create_rgb (1.0, 0.0, 0.0);
81

            
82
3
    cairo_test_paint_checkered (cr);
83

            
84
3
    fill_and_stroke_alpha (cr, rectangle, blue, red, 0.5);
85

            
86
3
    cairo_translate (cr, SIZE + 2 * PAD, 0);
87

            
88
3
    fill_and_stroke_alpha (cr, circle, red, blue, 0.5);
89

            
90
3
    cairo_pattern_destroy (blue);
91
3
    cairo_pattern_destroy (red);
92

            
93
3
    return CAIRO_TEST_SUCCESS;
94
}
95

            
96
1
CAIRO_TEST (fill_and_stroke_alpha,
97
	    "Use a group to fill/stroke a path then blend the result with alpha onto the destination",
98
	    "fill-and-stroke, fill, stroke", /* keywords */
99
	    NULL, /* requirements */
100
	    2 * SIZE + 4 * PAD, SIZE + 2 * PAD,
101
	    NULL, draw)