Upload Tizen2.0 source
[framework/graphics/cairo.git] / test / leaky-dash.c
1 /*
2  * Copyright © 2005 Red Hat, Inc.
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  * Red Hat, Inc. not be used in advertising or publicity pertaining to
10  * distribution of the software without specific, written prior
11  * permission. Red Hat, Inc. 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  * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL RED HAT, INC. 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: Carl D. Worth <cworth@cworth.org>
24  */
25
26 /* Test case for bug #4863:
27  *
28  *      stroking problems with wide dashed lines
29  *      https://bugs.freedesktop.org/show_bug.cgi?id=4863
30  */
31
32 #include "cairo-test.h"
33
34 #define WIDTH 71
35 #define HEIGHT 28
36
37 static cairo_test_status_t
38 draw (cairo_t *cr, int width, int height)
39 {
40     double dash[2];
41
42     cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
43     cairo_paint (cr);
44     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
45
46     cairo_set_line_width (cr, 2);
47     dash[0] = 8.0;
48     dash[1] = 2.0;
49
50     cairo_rectangle (cr, 2.0, 2.0, 67.0, 24.0);
51
52     cairo_set_dash (cr, dash, 2, 9.0);
53     cairo_stroke (cr);
54
55     return CAIRO_TEST_SUCCESS;
56 }
57
58 CAIRO_TEST (leaky_dash,
59             "Exercises bug #4863 in which a dashed stroke leaks into half the rectangle being filled"
60             "\nknown bug (#4863) which has existed since the 1.0 release",
61             "dash, stroke", /* keywords */
62             NULL, /* requirements */
63             WIDTH, HEIGHT,
64             NULL, draw)