Upload Tizen2.0 source
[framework/graphics/cairo.git] / test / hatchings.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 #include "cairo-test.h"
28
29 #define STEP    5
30 #define WIDTH   100
31 #define HEIGHT  100
32
33 static void hatching (cairo_t *cr)
34 {
35     int i;
36
37     cairo_rectangle (cr, 0, 0, WIDTH, HEIGHT);
38     cairo_clip (cr);
39
40     for (i = 0; i < WIDTH; i += STEP) {
41         cairo_rectangle (cr, i-1, -2, 2, HEIGHT+4);
42         cairo_rectangle (cr, -2, i-1, WIDTH+4, 2);
43     }
44 }
45
46 static void background (cairo_t *cr)
47 {
48     cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
49     cairo_set_source_rgb (cr, 1,1,1);
50     cairo_paint (cr);
51 }
52
53 static void clip_to_quadrant (cairo_t *cr)
54 {
55     cairo_rectangle (cr, 0, 0, WIDTH, HEIGHT);
56     cairo_clip (cr);
57 }
58
59 static void draw_hatching (cairo_t *cr, void (*func) (cairo_t *))
60 {
61     cairo_save (cr); {
62         clip_to_quadrant (cr);
63         hatching (cr);
64         func (cr);
65     } cairo_restore (cr);
66
67     cairo_translate (cr, WIDTH, 0);
68
69     cairo_save (cr); {
70         clip_to_quadrant (cr);
71         cairo_translate (cr, 0.25, 0.25);
72         hatching (cr);
73         func (cr);
74     } cairo_restore (cr);
75
76     cairo_translate (cr, WIDTH, 0);
77
78     cairo_save (cr); {
79         clip_to_quadrant (cr);
80         cairo_translate (cr, WIDTH/2, HEIGHT/2);
81         cairo_rotate (cr, M_PI/4);
82         cairo_translate (cr, -WIDTH/2, -HEIGHT/2);
83         hatching (cr);
84         func (cr);
85     } cairo_restore (cr);
86
87     cairo_translate (cr, WIDTH, 0);
88 }
89
90 static void do_clip (cairo_t *cr)
91 {
92     cairo_clip (cr);
93     cairo_paint (cr);
94 }
95
96 static void do_clip_alpha (cairo_t *cr)
97 {
98     cairo_clip (cr);
99     cairo_paint_with_alpha (cr, .5);
100 }
101
102 static void hatchings (cairo_t *cr, void (*func) (cairo_t *))
103 {
104     cairo_save (cr); {
105         cairo_set_source_rgb(cr, 1, 0, 0);
106         cairo_set_antialias (cr, CAIRO_ANTIALIAS_DEFAULT);
107         draw_hatching (cr, func);
108         cairo_set_source_rgb(cr, 0, 0, 1);
109         cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE);
110         draw_hatching (cr, func);
111     } cairo_restore (cr);
112 }
113
114 static cairo_test_status_t
115 draw (cairo_t *cr, int width, int height)
116 {
117     background (cr);
118
119
120     /* aligned, misaligned, diagonal; mono repeat
121      * x fill
122      * x clip; paint
123      * x clip; paint-alpha
124      * repeated, for over/source
125      */
126
127     cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
128
129     hatchings (cr, cairo_fill);
130     cairo_translate (cr, 0, HEIGHT);
131     hatchings (cr, do_clip);
132     cairo_translate (cr, 0, HEIGHT);
133     hatchings (cr, do_clip_alpha);
134     cairo_translate (cr, 0, HEIGHT);
135
136     cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
137
138     hatchings (cr, cairo_fill);
139     cairo_translate (cr, 0, HEIGHT);
140     hatchings (cr, do_clip);
141     cairo_translate (cr, 0, HEIGHT);
142     hatchings (cr, do_clip_alpha);
143     cairo_translate (cr, 0, HEIGHT);
144
145     return CAIRO_TEST_SUCCESS;
146 }
147
148 CAIRO_TEST (hatchings,
149             "Test drawing through various aligned/unaliged clips",
150             "clip, alpha", /* keywords */
151             "target=raster", /* requirements */
152             6*WIDTH, 6*HEIGHT,
153             NULL, draw)