Upload Tizen2.0 source
[framework/graphics/cairo.git] / test / leaky-dashed-rectangle.c
1 /*
2  * Copyright © 2008 Chris Wilson
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  * Chris Wilson not be used in advertising or publicity pertaining to
10  * distribution of the software without specific, written prior
11  * permission. Chris Wilson 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  * CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL CHRIS WILSON 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  *         Franz Schmid <Franz.Schmid@altmuehlnet.de>
25  */
26
27 /* Test case for bug reported by Franz Schmid <Franz.Schmid@altmuehlnet.de>
28  * http://lists.cairographics.org/archives/cairo/2008-April/013912.html
29  *
30  * See also: http://bugs.freedesktop.org/show_bug.cgi?id=17177
31  */
32
33 #include "cairo-test.h"
34
35 #define WIDTH 60
36 #define HEIGHT 60
37
38 static cairo_test_status_t
39 draw (cairo_t *cr, int width, int height)
40 {
41     const double dash[2] = {4, 2};
42
43     cairo_set_source_rgb (cr, 1, 1, 1);
44     cairo_paint (cr);
45
46     cairo_set_source_rgb (cr, 0., 0., 0);
47
48     cairo_translate (cr, 0.5, .5);
49     cairo_set_line_width (cr, 1); /* This is vital to reproduce the bug. */
50
51     /* First check simple rectangles */
52     cairo_set_source_rgb (cr, 0., 0., 0);
53     cairo_rectangle (cr, -WIDTH/4, -HEIGHT/4, WIDTH, HEIGHT);
54     cairo_stroke (cr);
55     cairo_rectangle (cr, WIDTH+WIDTH/4, -HEIGHT/4, -WIDTH, HEIGHT);
56     cairo_stroke (cr);
57     cairo_rectangle (cr, -WIDTH/4, HEIGHT+HEIGHT/4, WIDTH, -HEIGHT);
58     cairo_stroke (cr);
59     cairo_rectangle (cr, WIDTH+WIDTH/4, HEIGHT+HEIGHT/4, -WIDTH, -HEIGHT);
60     cairo_stroke (cr);
61
62     cairo_set_dash (cr, dash, 2, 0);
63
64     /* And now dashed. */
65     cairo_set_source_rgb (cr, 1., 0., 0);
66     cairo_rectangle (cr, -WIDTH/4, -HEIGHT/4, WIDTH, HEIGHT);
67     cairo_stroke (cr);
68     cairo_set_source_rgb (cr, 0., 1., 0);
69     cairo_rectangle (cr, WIDTH+WIDTH/4, -HEIGHT/4, -WIDTH, HEIGHT);
70     cairo_stroke (cr);
71     cairo_set_source_rgb (cr, 0., 0., 1);
72     cairo_rectangle (cr, -WIDTH/4, HEIGHT+HEIGHT/4, WIDTH, -HEIGHT);
73     cairo_stroke (cr);
74     cairo_set_source_rgb (cr, 1., 1., 0);
75     cairo_rectangle (cr, WIDTH+WIDTH/4, HEIGHT+HEIGHT/4, -WIDTH, -HEIGHT);
76     cairo_stroke (cr);
77
78     return CAIRO_TEST_SUCCESS;
79 }
80
81 CAIRO_TEST (leaky_dashed_rectangle,
82             "Exercises bug in which a dashed stroke leaks in from outside the surface",
83             "dash, stroke", /* keywords */
84             NULL, /* requirements */
85             WIDTH, HEIGHT,
86             NULL, draw)