d7c0523c60426ee1473b03d05450e967a5e24094
[framework/graphics/cairo.git] / test / degenerate-rel-curve-to.c
1 /*
2  * Copyright © 2005 Red Hat, Inc.
3  * Copyright © 2009 Chris Wilson
4  *
5  * Permission to use, copy, modify, distribute, and sell this software
6  * and its documentation for any purpose is hereby granted without
7  * fee, provided that the above copyright notice appear in all copies
8  * and that both that copyright notice and this permission notice
9  * appear in supporting documentation, and that the name of
10  * Red Hat, Inc. not be used in advertising or publicity pertaining to
11  * distribution of the software without specific, written prior
12  * permission. Red Hat, Inc. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as
14  * is" without express or implied warranty.
15  *
16  * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
18  * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
19  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
20  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
21  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
22  * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23  *
24  * Author: Carl D. Worth <cworth@cworth.org>
25  *         Chris Wilson <chris@chris-wilson.co.uk>
26  */
27
28 #include "cairo-test.h"
29
30 #define SIZE 30
31
32 /* Another attempt at avoiding unnecessary splines was made, where
33  * a curve-to that ended on the same point as it began were discarded.
34  * The same bug was made to rel-curve-to as well, hence this test.
35  */
36 static cairo_test_status_t
37 draw (cairo_t *cr, int width, int height)
38 {
39     cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
40     cairo_paint (cr);
41
42     cairo_set_line_width (cr, 1.0);
43     cairo_set_line_cap (cr, CAIRO_LINE_CAP_BUTT);
44     cairo_set_line_join (cr, CAIRO_LINE_JOIN_BEVEL);
45     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
46
47     /* entirely degenerate */
48     cairo_move_to (cr, 2.5, 2.5);
49     cairo_rel_curve_to (cr,
50                         0., 0.,
51                         0., 0.,
52                         0., 0.);
53     cairo_stroke (cr);
54
55     /* horizontal */
56     cairo_move_to (cr, 5.5, 2.5);
57     cairo_rel_curve_to (cr,
58                          10., 0.,
59                         -10., 0.,
60                          0., 0.);
61     cairo_stroke (cr);
62
63     /* vertical */
64     cairo_move_to (cr, 5.5, 2.5);
65     cairo_rel_curve_to (cr,
66                         0.,  10.,
67                         0., -10.,
68                         0.,   0.);
69     cairo_stroke (cr);
70
71     cairo_translate (cr, 15, 0);
72
73     /* horizontal/vertical */
74     cairo_move_to (cr, 5.5, 0.5);
75     cairo_rel_curve_to (cr,
76                         -6.,  0.,
77                          0., 10.,
78                          0.,  0.);
79
80     cairo_translate (cr, 10, 0);
81
82     /* vertical/horizontal */
83     cairo_move_to (cr, 5.5, 0.0);
84     cairo_rel_curve_to (cr,
85                         0., 11.,
86                         5.,  0.,
87                         0.,  0.);
88     cairo_stroke (cr);
89
90     return CAIRO_TEST_SUCCESS;
91 }
92
93 CAIRO_TEST (degenerate_rel_curve_to,
94             "Test optimization treating degenerate rel-curve-to as line-to",
95             "path", /* keywords */
96             NULL, /* requirements */
97             40,
98             5,
99             NULL, draw)