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 #4409:
27
 *
28
 *	Dashes are missing initial caps
29
 *	https://bugs.freedesktop.org/show_bug.cgi?id=4409
30
 */
31

            
32
#include "cairo-test.h"
33

            
34
#define LINE_WIDTH	10.
35
#define SIZE		(5 * LINE_WIDTH)
36
#define PAD		(2 * LINE_WIDTH)
37

            
38
static void
39
18
make_path (cairo_t *cr)
40
{
41
18
    cairo_move_to (cr, 0., 0.);
42
18
    cairo_rel_line_to (cr, 0., SIZE);
43
18
    cairo_rel_line_to (cr, SIZE, 0.);
44
18
    cairo_close_path (cr);
45

            
46
18
    cairo_move_to (cr, 2 * LINE_WIDTH, 0.);
47
18
    cairo_rel_line_to (cr, 3 * LINE_WIDTH, 0.);
48
18
    cairo_rel_line_to (cr, 0., 3 * LINE_WIDTH);
49
18
}
50

            
51
static cairo_test_status_t
52
3
draw (cairo_t *cr, int width, int height)
53
{
54
3
    double dash[] = {LINE_WIDTH, 1.5 * LINE_WIDTH};
55
3
    double dash_offset = -2 * LINE_WIDTH;
56
    int i;
57

            
58
    /* We draw in the default black, so paint white first. */
59
3
    cairo_save (cr);
60
3
    cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
61
3
    cairo_paint (cr);
62
3
    cairo_restore (cr);
63

            
64
9
    for (i=0; i<2; i++) {
65
6
	cairo_save (cr);
66
6
	cairo_set_line_width (cr, LINE_WIDTH);
67
6
	cairo_set_dash (cr, dash, ARRAY_LENGTH (dash), dash_offset);
68

            
69
6
	cairo_translate (cr, PAD, PAD);
70

            
71
6
	make_path (cr);
72
6
	cairo_set_line_cap (cr, CAIRO_LINE_CAP_BUTT);
73
6
	cairo_set_line_join (cr, CAIRO_LINE_JOIN_BEVEL);
74
6
	cairo_stroke (cr);
75

            
76
6
	cairo_translate (cr, SIZE + PAD, 0.);
77

            
78
6
	make_path (cr);
79
6
	cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
80
6
	cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
81
6
	cairo_stroke (cr);
82

            
83
6
	cairo_translate (cr, SIZE + PAD, 0.);
84

            
85
6
	make_path (cr);
86
6
	cairo_set_line_cap (cr, CAIRO_LINE_CAP_SQUARE);
87
6
	cairo_set_line_join (cr, CAIRO_LINE_JOIN_MITER);
88
6
	cairo_stroke (cr);
89

            
90
6
	cairo_restore (cr);
91
6
	cairo_translate (cr, 0., SIZE + PAD);
92
6
	dash_offset = 0;
93
    }
94

            
95
3
    return CAIRO_TEST_SUCCESS;
96
}
97

            
98
1
CAIRO_TEST (dash_caps_joins,
99
	    "Test caps and joins when dashing",
100
	    "dash, stroke", /* keywords */
101
	    NULL, /* requirements */
102
	    3 * (PAD + SIZE) + PAD,
103
	    PAD + SIZE + PAD + SIZE + PAD,
104
	    NULL, draw)