9d2017067d85b8637452a9cdd3ef6548df83a9a2
[framework/graphics/cairo.git] / test / shape-sierpinski.c
1 /*
2  * Copyright © 2011 Intel Corporation
3  *
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:
11  *
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  *
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.
23  *
24  * Author: Chris Wilson <chris@chris-wilson.co.uk>
25  */
26
27 /* I thought I spied a bug... */
28
29 #include "cairo-test.h"
30
31 #define WIDTH           (1024)
32 #define HEIGHT          (600)
33
34 static const double m_1_sqrt_3 = 0.577359269;
35
36 static void
37 T (cairo_t *cr, int size)
38 {
39     cairo_move_to (cr, 0, 0);
40     cairo_line_to (cr, size, 0);
41     cairo_line_to (cr, size/2, size*m_1_sqrt_3);
42
43     size /= 2;
44     if (size >= 4) {
45         T (cr, size);
46         cairo_save (cr); {
47             cairo_translate (cr, size, 0);
48             T (cr, size);
49         } cairo_restore (cr);
50         cairo_save (cr); {
51             cairo_translate (cr, size/2, size*m_1_sqrt_3);
52             T (cr, size);
53         } cairo_restore (cr);
54     }
55 }
56
57 static cairo_test_status_t
58 draw (cairo_t *cr, int width, int height)
59 {
60     cairo_set_source_rgb (cr, 1, 1, 1);
61     cairo_paint (cr);
62
63     cairo_translate (cr, 0, 8);
64
65     cairo_set_source_rgb (cr, 0, 0, 0);
66     cairo_set_line_width (cr, 1.);
67
68     T (cr, WIDTH);
69
70     cairo_translate (cr, 0, 2*HEIGHT-16);
71     cairo_scale (cr, 1, -1);
72
73     T (cr, WIDTH);
74
75     cairo_stroke (cr);
76
77     return CAIRO_TEST_SUCCESS;
78 }
79
80 CAIRO_TEST (shape_sierpinski,
81             "A fractal triangle",
82             "stroke", /* keywords */
83             NULL, /* requirements */
84             WIDTH, 2*HEIGHT,
85             NULL, draw)