c6d7c006297ed6c89a54f8c5bc0bc25febd19d31
[platform/core/graphics/cairo.git] / test / fill-and-stroke-alpha.c
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 rectangle (cairo_t *cr)
36 {
37     cairo_rectangle (cr, PAD, PAD, SIZE, SIZE);
38 }
39
40 static void
41 circle (cairo_t *cr)
42 {
43     cairo_arc (cr,
44                PAD + SIZE / 2, PAD + SIZE / 2,
45                SIZE / 2,
46                0, 2 * M_PI);
47 }
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 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     cairo_push_group (cr);
62     {
63         (path_func) (cr);
64         cairo_set_source (cr, fill_pattern);
65         cairo_fill_preserve (cr);
66         cairo_set_source (cr, stroke_pattern);
67         cairo_stroke (cr);
68     }
69     cairo_pop_group_to_source (cr);
70     cairo_paint_with_alpha (cr, alpha);
71 }
72
73 static cairo_test_status_t
74 draw (cairo_t *cr, int width, int height)
75 {
76     cairo_pattern_t *blue;
77     cairo_pattern_t *red;
78
79     blue = cairo_pattern_create_rgb (0.0, 0.0, 1.0);
80     red = cairo_pattern_create_rgb (1.0, 0.0, 0.0);
81
82     cairo_test_paint_checkered (cr);
83
84     fill_and_stroke_alpha (cr, rectangle, blue, red, 0.5);
85
86     cairo_translate (cr, SIZE + 2 * PAD, 0);
87
88     fill_and_stroke_alpha (cr, circle, red, blue, 0.5);
89
90     cairo_pattern_destroy (blue);
91     cairo_pattern_destroy (red);
92
93     return CAIRO_TEST_SUCCESS;
94 }
95
96 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)