caf68777e7d2c86f77add2d11c04dc3368637e96
[platform/core/graphics/cairo.git] / test / sample.c
1 /*
2  * Copyright 2012 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 #include "cairo-test.h"
28
29 /* Test the fidelity of the rasterisation, because Cairo is my favourite
30  * driver test suite.
31  */
32
33 #define GENERATE_REFERENCE 0
34
35 #define WIDTH 256
36 #define HEIGHT 40
37
38 #include "../src/cairo-fixed-type-private.h"
39 #define PRECISION (1 << CAIRO_FIXED_FRAC_BITS)
40
41 static cairo_test_status_t
42 vertical (cairo_t *cr, int width, int height)
43 {
44     int x;
45
46     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0);
47     cairo_paint (cr);
48
49     cairo_set_source_rgba (cr, 1, 1, 1, 1);
50     for (x = -HEIGHT*PRECISION-2; x <= (WIDTH+HEIGHT)*PRECISION+2; x += 4) {
51         cairo_move_to (cr, x / (double)PRECISION - 2, -2);
52         cairo_rel_line_to (cr, 0, HEIGHT + 4);
53     }
54     cairo_set_line_width (cr, 2 / (double)PRECISION);
55     cairo_stroke (cr);
56
57     return CAIRO_TEST_SUCCESS;
58 }
59
60 static cairo_test_status_t
61 horizontal (cairo_t *cr, int width, int height)
62 {
63     int x;
64
65     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0);
66     cairo_paint (cr);
67
68     cairo_set_source_rgba (cr, 1, 1, 1, 1);
69     for (x = -HEIGHT*PRECISION-2; x <= (WIDTH+HEIGHT)*PRECISION+2; x += 4) {
70         cairo_move_to (cr, -2, x / (double)PRECISION - 2);
71         cairo_rel_line_to (cr, HEIGHT + 4, 0);
72     }
73     cairo_set_line_width (cr, 2 / (double)PRECISION);
74     cairo_stroke (cr);
75
76     return CAIRO_TEST_SUCCESS;
77 }
78
79 static cairo_test_status_t
80 diagonal (cairo_t *cr, int width, int height)
81 {
82     int x;
83
84     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0);
85     cairo_paint (cr);
86
87     cairo_set_source_rgba (cr, 1, 1, 1, 1);
88     for (x = -HEIGHT*PRECISION-2; x <= (WIDTH+HEIGHT)*PRECISION+2; x += 6) {
89         cairo_move_to (cr, x / (double)PRECISION - 2, -2);
90         cairo_rel_line_to (cr, HEIGHT + 4, HEIGHT + 4);
91     }
92     cairo_set_line_width (cr, 2 / (double)PRECISION);
93     cairo_stroke (cr);
94
95     return CAIRO_TEST_SUCCESS;
96 }
97
98 CAIRO_TEST (sample_vertical,
99             "Check the fidelity of the rasterisation.",
100             NULL, /* keywords */
101             "target=raster slow", /* requirements */
102             WIDTH, HEIGHT,
103             NULL, vertical)
104
105 CAIRO_TEST (sample_horizontal,
106             "Check the fidelity of the rasterisation.",
107             NULL, /* keywords */
108             "target=raster slow", /* requirements */
109             WIDTH, HEIGHT,
110             NULL, horizontal)
111
112 CAIRO_TEST (sample_diagonal,
113             "Check the fidelity of the rasterisation.",
114             NULL, /* keywords */
115             "target=raster slow", /* requirements */
116             WIDTH, HEIGHT,
117             NULL, diagonal)