Initialize Tizen 2.3
[framework/graphics/cairo.git] / test / dash-no-dash.c
1 /*
2  * Copyright © 2006 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 #include "cairo-test.h"
27 #include <stdlib.h>
28
29 #define PAD             1
30 #define LINE_WIDTH      2
31 #define HEIGHT          (PAD + 4 * (LINE_WIDTH + PAD))
32 #define WIDTH           16
33
34 static void
35 line (cairo_t *cr)
36 {
37     cairo_move_to (cr, PAD, 0.0);
38     cairo_line_to (cr, WIDTH - PAD, 0.0);
39 }
40
41 static cairo_test_status_t
42 draw (cairo_t *cr, int width, int height)
43 {
44     double dash = 2.0;
45
46     /* We draw in black, so paint white first. */
47     cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
48     cairo_paint (cr);
49
50     cairo_set_source_rgb (cr, 0, 0, 0); /* black */
51
52     cairo_translate (cr, 0.0, PAD + LINE_WIDTH / 2);
53
54     /* First draw a solid line... */
55     line (cr);
56     cairo_stroke (cr);
57
58     cairo_translate (cr, 0.0, LINE_WIDTH + PAD);
59
60     /* then a dashed line... */
61     cairo_set_dash (cr, &dash, 1, 0.0);
62     line (cr);
63     cairo_stroke (cr);
64
65     cairo_translate (cr, 0.0, LINE_WIDTH + PAD);
66
67     /* back to solid... */
68     cairo_set_dash (cr, NULL, 0, 0.0);
69     line (cr);
70     cairo_stroke (cr);
71
72     cairo_translate (cr, 0.0, LINE_WIDTH + PAD);
73
74     /* and finally, back to dashed. */
75     cairo_set_dash (cr, &dash, 1, 0.0);
76     line (cr);
77     cairo_stroke (cr);
78
79     return CAIRO_TEST_SUCCESS;
80 }
81
82 CAIRO_TEST (dash_no_dash,
83             "Tests that we can actually turn dashing on and off again",
84             "dash, stroke", /* keywords */
85             NULL, /* requirements */
86             WIDTH, HEIGHT,
87             NULL, draw)