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: Owen Taylor <otaylor@redhat.com>
24
 */
25

            
26
#include "cairo-test.h"
27

            
28
#define IMAGE_WIDTH 19
29
#define IMAGE_HEIGHT 19
30

            
31
/* Basic test of dashed strokes, including a test for the negative
32
 * dash offset bug:
33
 *
34
 *	https://bugs.freedesktop.org/show_bug.cgi?id=2729
35
 */
36

            
37
static cairo_test_status_t
38
3
draw (cairo_t *cr, int width, int height)
39
{
40
3
    double dashes[] = { 1 };
41

            
42
    /* We draw in the default black, so paint white first. */
43
3
    cairo_save (cr);
44
3
    cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
45
3
    cairo_paint (cr);
46
3
    cairo_restore (cr);
47

            
48
3
    cairo_set_line_width (cr, 2);
49

            
50
    /* Basic 1-1 dash pattern */
51
3
    cairo_set_dash (cr, dashes, 1, 0.);
52

            
53
3
    cairo_move_to (cr,  1, 2);
54
3
    cairo_line_to (cr, 18, 2);
55
3
    cairo_stroke (cr);
56

            
57
    /* Adjust path by 0.5. Ideally this would give a constant 50%
58
     * gray, (but does not due to the location of the regular sample
59
     * grid points. */
60
3
    cairo_move_to (cr, 1.5, 5);
61
3
    cairo_line_to (cr, 18., 5);
62
3
    cairo_stroke (cr);
63

            
64
    /* Offset dash by 0.5, rather than the path */
65
3
    cairo_set_dash (cr, dashes, 1, 0.5);
66

            
67
3
    cairo_move_to (cr,  1, 8);
68
3
    cairo_line_to (cr, 18, 8);
69
3
    cairo_stroke (cr);
70

            
71
    /* Now, similar tests with negative dash offsets. */
72

            
73
    /* Basic 1-1 dash pattern dashing */
74
3
    cairo_set_dash (cr, dashes, 1, -4);
75

            
76
3
    cairo_move_to (cr,  1, 11);
77
3
    cairo_line_to (cr, 18, 11);
78
3
    cairo_stroke (cr);
79

            
80
    /* Adjust path by 0.5 */
81
3
    cairo_move_to (cr, 1.5, 14);
82
3
    cairo_line_to (cr, 18., 14);
83
3
    cairo_stroke (cr);
84

            
85
    /* Offset dash by 0.5 */
86
3
    cairo_set_dash (cr, dashes, 1, -3.5);
87

            
88
3
    cairo_move_to (cr,  1, 17);
89
3
    cairo_line_to (cr, 18, 17);
90
3
    cairo_stroke (cr);
91

            
92
3
    return CAIRO_TEST_SUCCESS;
93
}
94

            
95
1
CAIRO_TEST (dash_offset_negative,
96
	    "Tests cairo_set_dash with a negative offset",
97
	    "dash, stroke", /* keywords */
98
	    NULL, /* requirements */
99
	    IMAGE_WIDTH, IMAGE_HEIGHT,
100
	    NULL, draw)