Opensource Compliance Issue.
[platform/core/graphics/cairo.git] / test / scaled-font-zero-matrix.c
1 /*
2  * Copyright © 2008 Mozilla Corporation
3  *
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  * Mozilla Corporation not be used in advertising or publicity pertaining to
10  * distribution of the software without specific, written prior
11  * permission. Mozilla Corporation makes no representations about the
12  * suitability of this software for any purpose.  It is provided "as
13  * is" without express or implied warranty.
14  *
15  * MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL MOZILLA CORPORATION 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.
22  *
23  * Authors: Jeff Muizelaar
24  */
25
26 #include "cairo-test.h"
27
28 static cairo_test_status_t
29 draw (cairo_t *cr, int width, int height)
30 {
31     cairo_font_face_t *font_face;
32     cairo_font_options_t *font_options;
33     cairo_scaled_font_t *scaled_font;
34     cairo_matrix_t identity;
35     cairo_matrix_t zero;
36
37     cairo_matrix_init_identity(&identity);
38
39     zero = identity;
40     cairo_matrix_scale(&zero, 0, 0);
41
42     font_face = cairo_get_font_face (cr);
43     font_options = cairo_font_options_create ();
44     cairo_get_font_options (cr, font_options);
45     scaled_font = cairo_scaled_font_create (font_face,
46             &identity,
47             &zero,
48             font_options);
49     cairo_set_scaled_font (cr, scaled_font);
50     cairo_show_text (cr, "Hello");
51     cairo_scaled_font_destroy (scaled_font);
52     cairo_font_options_destroy (font_options);
53
54     return cairo_test_status_from_status (cairo_test_get_context (cr),
55                                           cairo_status(cr));
56 }
57
58 CAIRO_TEST (scaled_font_zero_matrix,
59             "Test that scaled fonts with a degenerate matrix work",
60             "zero, matrix, degenerate, scaled-font", /* keywords */
61             NULL, /* requirements */
62             0, 0,
63             NULL, draw)