Opensource Compliance Issue.
[platform/core/graphics/cairo.git] / test / clip-contexts.c
1 /*
2  * Copyright © 2010 Intel 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  * Intel Corporation not be used in advertising or publicity pertaining to
10  * distribution of the software without specific, written prior
11  * permission. Intel 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  * INTEL CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL INTEL 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: Chris Wilson <chris@chris-wilson.co.uk>
24  */
25
26 #include "cairo-test.h"
27
28 /*
29  * Jeff Muizelaar found a bug on Quartz with cairo-surface-clipper, which was
30  * the topmost clip path from two different contexts and finding them equally
31  * incorrectly concluding that the operation was a no-op.
32  */
33
34 #define SIZE 10
35 #define CLIP_SIZE 2
36
37 static cairo_test_status_t
38 draw (cairo_t *cr, int width, int height)
39 {
40     cairo_t *cr2;
41
42     /* opaque background */
43     cairo_set_source_rgb (cr, 0, 0, 0);
44     cairo_paint (cr);
45
46     /* first create an empty, non-overlappiny clip */
47     cr2 = cairo_create (cairo_get_target (cr));
48     cairo_rectangle (cr2, 0, 0, SIZE/2-2, SIZE/2-2);
49     cairo_clip (cr2);
50
51     cairo_rectangle (cr2, SIZE/2+2, SIZE/2+2, SIZE/2-2, SIZE/2-2);
52     cairo_clip (cr2);
53
54     /* and apply the clip onto the surface, empty nothing should be painted */
55     cairo_set_source_rgba (cr2, 1, 0, 0, .5);
56     cairo_paint (cr2);
57
58     /* switch back to the original, and set only the last clip */
59     cairo_rectangle (cr, SIZE/2+2, SIZE/2+2, SIZE/2-2, SIZE/2-2);
60     cairo_clip (cr);
61
62     cairo_set_source_rgba (cr, 0, 0, 1, .5);
63     cairo_paint (cr);
64
65     cairo_destroy (cr2);
66
67     return CAIRO_TEST_SUCCESS;
68 }
69
70 CAIRO_TEST (clip_contexts,
71             "Test clipping with 2 separate contexts",
72             "clip", /* keywords */
73             NULL, /* requirements */
74             SIZE, SIZE,
75             NULL, draw)