Opensource Compliance Issue.
[platform/core/graphics/cairo.git] / test / stroke-clipped.c
1 /*
2  * Permission is hereby granted, free of charge, to any person
3  * obtaining a copy of this software and associated documentation
4  * files (the "Software"), to deal in the Software without
5  * restriction, including without limitation the rights to use, copy,
6  * modify, merge, publish, distribute, sublicense, and/or sell copies
7  * of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be
11  * included in all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20  * SOFTWARE.
21  */
22
23 #include "cairo-test.h"
24
25 #define SIZE 200
26
27 static cairo_test_status_t
28 draw (cairo_t *cr, int width, int height)
29 {
30     int row;
31
32     cairo_set_source_rgb(cr, 1, 1, 1);
33     cairo_paint(cr);
34
35     cairo_set_source_rgb(cr, 1, 0, 0);
36     for(row = 0; row < SIZE; row++) {
37         cairo_rectangle(cr, 0, row, SIZE, 1);
38         cairo_clip(cr);
39
40         cairo_arc(cr, SIZE/2, SIZE/2, SIZE/2-8, 0, 2*M_PI);
41         cairo_stroke(cr);
42
43         cairo_reset_clip(cr);
44     }
45
46     return CAIRO_TEST_SUCCESS;
47 }
48
49 CAIRO_TEST (stroke_clipped,
50             "Check that the stroke is accurately drawn through smaller clips",
51             "stroke", /* keywords */
52             NULL, /* requirements */
53             SIZE, SIZE,
54             NULL, draw)