2 * Copyright © 2006 Red Hat, Inc.
4 * Permission to use, copy, modify, distribute, and sell this software
5 * and its documentation for any purpose is hereby granted without
6 * fee, provided that the above copyright notice appear in all copies
7 * and that both that copyright notice and this permission notice
8 * appear in supporting documentation, and that the name of
9 * Red Hat, Inc. not be used in advertising or publicity pertaining to
10 * distribution of the software without specific, written prior
11 * permission. Red Hat, Inc. makes no representations about the
12 * suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
15 * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
18 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * Author: Carl D. Worth <cworth@cworth.org>
26 #include "cairo-test.h"
31 cairo_surface_t
*surface
;
32 cairo_pattern_t
*solid_rgb
, *solid_rgba
, *surface_pattern
, *linear
, *radial
;
34 cairo_test_init ("pattern-get-type");
36 cairo_test_log ("Creating patterns of all types\n");
38 solid_rgb
= cairo_pattern_create_rgb (0.0, 0.1, 0.2);
39 solid_rgba
= cairo_pattern_create_rgba (0.3, 0.4, 0.5, 0.6);
40 surface
= cairo_image_surface_create (CAIRO_FORMAT_ARGB32
,
42 surface_pattern
= cairo_pattern_create_for_surface (surface
);
43 linear
= cairo_pattern_create_linear (0.0, 0.0, 10.0, 10.0);
44 radial
= cairo_pattern_create_radial (10.0, 10.0, 0.1,
47 cairo_test_log ("Verifying return values of cairo_pattern_get_type\n");
49 if (cairo_pattern_get_type (solid_rgb
) != CAIRO_PATTERN_TYPE_SOLID
)
50 return CAIRO_TEST_FAILURE
;
52 if (cairo_pattern_get_type (solid_rgba
) != CAIRO_PATTERN_TYPE_SOLID
)
53 return CAIRO_TEST_FAILURE
;
55 if (cairo_pattern_get_type (surface_pattern
) != CAIRO_PATTERN_TYPE_SURFACE
)
56 return CAIRO_TEST_FAILURE
;
58 if (cairo_pattern_get_type (linear
) != CAIRO_PATTERN_TYPE_LINEAR
)
59 return CAIRO_TEST_FAILURE
;
61 if (cairo_pattern_get_type (radial
) != CAIRO_PATTERN_TYPE_RADIAL
)
62 return CAIRO_TEST_FAILURE
;
64 cairo_test_log ("Cleaning up\n");
66 cairo_pattern_destroy (solid_rgb
);
67 cairo_pattern_destroy (solid_rgba
);
68 cairo_pattern_destroy (surface_pattern
);
69 cairo_surface_destroy (surface
);
70 cairo_pattern_destroy (linear
);
71 cairo_pattern_destroy (radial
);
75 return CAIRO_TEST_SUCCESS
;