Opensource Compliance Issue.
[platform/core/graphics/cairo.git] / test / a1-rasterisation.c
1 /*
2  * Copyright 2010 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 /*
30  * Test the fidelity of the rasterisation, paying careful attention to rounding.
31  */
32
33 #include "../src/cairo-fixed-type-private.h"
34 #define PRECISION (int)(1 << CAIRO_FIXED_FRAC_BITS)
35
36 #define WIDTH ((PRECISION/2+1)*3)
37 #define HEIGHT ((PRECISION/2+1)*3)
38
39 #define SUBPIXEL(v) ((v)/(double)(PRECISION/2))
40
41 static cairo_test_status_t
42 rectangles (cairo_t *cr, int width, int height)
43 {
44     int x, y;
45
46     cairo_set_source_rgb (cr, 1.0, 1.0, 1.0);
47     cairo_paint (cr);
48
49     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0);
50     cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE);
51
52     for (x = 0; x < WIDTH; x += 3) {
53         for (y = 0; y < HEIGHT; y += 3) {
54             cairo_rectangle (cr, x + SUBPIXEL (y/3) - .5, y + SUBPIXEL (x/3) - .5, .5, .5);
55         }
56     }
57     cairo_fill (cr);
58
59     return CAIRO_TEST_SUCCESS;
60 }
61
62 static cairo_test_status_t
63 triangles (cairo_t *cr, int width, int height)
64 {
65     int x, y;
66
67     cairo_set_source_rgb (cr, 1.0, 1.0, 1.0);
68     cairo_paint (cr);
69
70     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0);
71     cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE);
72
73     for (x = 0; x < WIDTH; x += 3) {
74         for (y = 0; y < HEIGHT; y += 3) {
75             /* a rectangle with a diagonal to force tessellation */
76             cairo_move_to (cr, x + SUBPIXEL (y/3) - .5, y + SUBPIXEL (x/3) - .5);
77             cairo_rel_line_to (cr, .5, .5);
78             cairo_rel_line_to (cr, 0, -.5);
79             cairo_rel_line_to (cr, -.5, 0);
80             cairo_rel_line_to (cr, 0, .5);
81             cairo_rel_line_to (cr, .5, 0);
82         }
83     }
84     cairo_fill (cr);
85
86     return CAIRO_TEST_SUCCESS;
87 }
88
89 CAIRO_TEST (a1_rasterisation_rectangles,
90             "Check the fidelity of the rasterisation.",
91             "rasterisation", /* keywords */
92             "target=raster", /* requirements */
93             WIDTH, HEIGHT,
94             NULL, rectangles)
95
96 CAIRO_TEST (a1_rasterisation_triangles,
97             "Check the fidelity of the rasterisation.",
98             "rasterisation", /* keywords */
99             "target=raster", /* requirements */
100             WIDTH, HEIGHT,
101             NULL, triangles)