[test] Add test case for a leaky dashed rectangle.
[cairo/haiku.git] / test / stroke-ctm-caps.c
blob07a918ebacd439f14f3ad3c8d92557087c53dd34
1 /*
2 * Copyright © 2008 Adrian Johnson
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
24 * Author: Adrian Johnson <ajohnson@redneon.com>
27 #include "cairo-test.h"
29 static cairo_test_draw_function_t draw;
31 #define SIZE 100
32 #define PAD 2
33 #define WIDTH (PAD + SIZE + PAD)
34 #define HEIGHT WIDTH
36 /* This test is designed to test that PDF viewers use the correct
37 * alpha values in an Alpha SMasks. Some viewers use the color values
38 * instead of the alpha. The test draws a triangle and rectangle in a
39 * group then draws the group using cairo_mask(). The mask consists of
40 * a circle with the rgba (0.4, 0.4, 0.4, 0.8) and the background rgba
41 * (0.8, 0.8, 0.8, 0.4).
44 cairo_test_t test = {
45 "stroke-ctm-caps",
46 "Test that the stroker correctly passes the device-space vector to the stroker for endcaps",
47 WIDTH, HEIGHT,
48 draw
51 static cairo_test_status_t
52 draw (cairo_t *cr, int width, int height)
54 cairo_set_source_rgb (cr, 1, 1, 1);
55 cairo_paint (cr);
57 /* flip the CTM, which most clearly shows the problem */
58 cairo_translate (cr, 0, HEIGHT);
59 cairo_scale (cr, 1, -1);
61 cairo_set_source_rgb (cr, 0, 0, 0);
63 cairo_set_line_width (cr, 10);
64 cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
65 cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
67 cairo_move_to (cr, 20, 20);
68 cairo_line_to (cr, 20, 70);
69 cairo_stroke (cr);
71 cairo_move_to (cr, 40, 20);
72 cairo_line_to (cr, 70, 70);
73 cairo_stroke (cr);
75 cairo_move_to (cr, 60, 20);
76 cairo_line_to (cr, 90, 20);
77 cairo_stroke (cr);
79 return CAIRO_TEST_SUCCESS;
82 int
83 main (void)
85 return cairo_test (&test);