Upload Tizen2.0 source
[framework/graphics/cairo.git] / test / clipped-group.c
1 /*
2  * Copyright © 2008 Mozilla Corporation
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  * Mozilla Corporation not be used in advertising or publicity pertaining to
10  * distribution of the software without specific, written prior
11  * permission. Mozilla Corporation 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  * MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL MOZILLA CORPORATION 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: Jeff Muizelaar
24  */
25
26 #include "cairo-test.h"
27
28 #define WIDTH 60
29 #define HEIGHT 70
30
31 static cairo_test_status_t
32 draw (cairo_t *cr, int width, int height)
33 {
34     /* fill with black so we don't need an rgb test case */
35     cairo_set_source_rgb (cr, 0, 0, 0);
36     cairo_paint (cr);
37
38     /* setting a scale will ensure that the device offset is transformed */
39     cairo_scale (cr, 2.1, 2.8);
40     cairo_set_source_rgb (cr, 1, .5,.4);
41
42     /* all rectangles should look the same */
43
44     /* plain rectangle */
45     cairo_rectangle (cr, 4, 4, 8, 8);
46     cairo_fill (cr);
47
48     cairo_translate (cr, 10, 0);
49
50     /* clipped rectangle */
51     cairo_save (cr);
52     cairo_rectangle (cr, 3, 3, 9, 9);
53     cairo_clip (cr);
54     cairo_rectangle (cr, 4, 4, 8, 8);
55     cairo_fill (cr);
56     cairo_restore (cr);
57
58     cairo_translate (cr, 0, 10);
59
60     /* clipped and grouped rectangle */
61     cairo_save (cr);
62     cairo_rectangle (cr, 3, 3, 9, 9);
63     cairo_clip (cr);
64     cairo_push_group (cr);
65     cairo_rectangle (cr, 4, 4, 8, 8);
66     cairo_fill (cr);
67     cairo_pop_group_to_source (cr);
68     cairo_paint (cr);
69     cairo_restore (cr);
70
71     cairo_translate (cr, -10, 0);
72
73     /* grouped rectangle */
74     cairo_push_group (cr);
75     cairo_rectangle (cr, 4, 4, 8, 8);
76     cairo_fill (cr);
77     cairo_pop_group_to_source (cr);
78     cairo_paint (cr);
79
80     return CAIRO_TEST_SUCCESS;
81 }
82
83 CAIRO_TEST (clipped_group,
84             "Test that a clipped group ends up in the right place",
85             "clip", /* keywords */
86             NULL, /* requirements */
87             WIDTH, HEIGHT,
88             NULL, draw)