1
/*
2
 * Copyright 2010 Red Hat Inc.
3
 *
4
 * Permission is hereby granted, free of charge, to any person
5
 * obtaining a copy of this software and associated documentation
6
 * files (the "Software"), to deal in the Software without
7
 * restriction, including without limitation the rights to use, copy,
8
 * modify, merge, publish, distribute, sublicense, and/or sell copies
9
 * of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be
13
 * included in all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
 * SOFTWARE.
23
 *
24
 * Author: Benjamin Otte <otte@gnome.org>
25
 */
26

            
27
#include "cairo-test.h"
28

            
29
#define CLIP_OFFSET 15
30
#define CLIP_SIZE 20
31

            
32
#define WIDTH 50
33
#define HEIGHT 50
34

            
35
static cairo_test_status_t
36
3
draw (cairo_t *cr, int width, int height)
37
{
38
    /* Neutral gray background */
39
3
    cairo_set_source_rgb (cr, 0.51613, 0.55555, 0.51613);
40
3
    cairo_paint (cr);
41

            
42
    /* the rest uses CAIRO_OPERATOR_SOURCE so we see better when something goes wrong */
43
3
    cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
44

            
45
    /* add a rectangle */
46
3
    cairo_rectangle (cr, CLIP_OFFSET, CLIP_OFFSET, CLIP_SIZE, CLIP_SIZE);
47

            
48
    /* clip to the rectangle */
49
3
    cairo_clip_preserve (cr);
50

            
51
    /* push a group. We now have a device offset. */
52
3
    cairo_push_group (cr);
53

            
54
    /* push a group again. This is where the bug used to happen. */
55
3
    cairo_push_group (cr);
56

            
57
    /* draw something */
58
3
    cairo_set_source_rgb (cr, 1, 0, 0);
59
3
    cairo_fill_preserve (cr);
60

            
61
    /* make sure the stuff we drew ends up on the output */
62
3
    cairo_pop_group_to_source (cr);
63
3
    cairo_fill_preserve (cr);
64

            
65
3
    cairo_pop_group_to_source (cr);
66
3
    cairo_fill_preserve (cr);
67

            
68
3
    return CAIRO_TEST_SUCCESS;
69
}
70

            
71
1
CAIRO_TEST (push_group_path_offset,
72
	    "Exercises a bug in Cairo 1.9 where existing paths applied the target's"
73
            " device offset twice when cairo_push_group() was called.",
74
	    "group, path", /* keywords */
75
	    NULL, /* requirements */
76
	    WIDTH, HEIGHT,
77
	    NULL, draw)