2 * Copyright © 2005, 2007 Red Hat, Inc.
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:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
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
24 * Author: Carl D. Worth <cworth@cworth.org>
27 #include "cairo-test.h"
29 static cairo_test_draw_function_t draw
;
31 #define NUM_GRADIENTS 4
34 #define WIDTH (SIZE * NUM_GRADIENTS)
35 #define HEIGHT (SIZE * NUM_EXTEND)
37 static const cairo_test_t test
= {
39 "Simple test of radial gradients",
45 draw_gradient (cairo_t
*cr
,
51 cairo_extend_t extend
)
53 cairo_pattern_t
*pattern
;
57 pattern
= cairo_pattern_create_radial (x
+ size
/2.0 + offset
,
58 y
+ size
/2.0 + offset
, inner_radius
,
60 y
+ size
/2.0, size
/3.0);
61 cairo_pattern_add_color_stop_rgba (pattern
, 0.0,
63 cairo_pattern_add_color_stop_rgba (pattern
, sqrt (1.0 / 2.0),
65 cairo_pattern_add_color_stop_rgba (pattern
, 1.0,
67 cairo_pattern_set_extend (pattern
, extend
);
69 cairo_rectangle (cr
, x
, y
, size
, size
);
72 cairo_set_source (cr
, pattern
);
75 cairo_pattern_destroy (pattern
);
80 static cairo_test_status_t
81 draw (cairo_t
*cr
, int width
, int height
)
84 double inner_radius
, offset
;
85 cairo_extend_t extend
[NUM_EXTEND
] = {
92 cairo_test_paint_checkered (cr
);
94 for (j
= 0; j
< NUM_EXTEND
; j
++) {
95 for (i
= 0; i
< NUM_GRADIENTS
; i
++) {
96 offset
= i
% 2 ? SIZE
/ 12.0 : 0.0;
97 inner_radius
= i
>= NUM_EXTEND
/ 2 ? SIZE
/ 6.0 : 0.0;
98 draw_gradient (cr
, i
* SIZE
, j
* SIZE
, SIZE
,
99 offset
, inner_radius
, extend
[j
]);
103 return CAIRO_TEST_SUCCESS
;
109 return cairo_test (&test
);