Tizen 2.0 Release
[framework/graphics/cairo.git] / test / xcomposite-projection.c
1 /*
2  * Copyright 2009 Benjamin Otte
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: Benjamin Otte <otte@gnome.org>
25  */
26
27 #include "cairo-test.h"
28
29 /*
30  * Exercise a bug in the projection of a rotated trapezoid mask.
31  * I used CAIRO_ANTIALIAS_NONE and a single-color source in the test to get
32  * rid of aliasing issues in the output images. This makes some issues
33  * slightly less visible, but still fails for all of them. If you want to
34  * get a clearer view:
35  * #define ANTIALIAS CAIRO_ANTIALIAS_DEFAULT
36  */
37
38 #define ANTIALIAS CAIRO_ANTIALIAS_NONE
39
40 static const char png_filename[] = "romedalen.png";
41
42 static cairo_pattern_t *
43 get_source (const cairo_test_context_t *ctx,
44             int *width, int *height)
45 {
46     cairo_surface_t *surface;
47     cairo_pattern_t *pattern;
48
49     if (ANTIALIAS == CAIRO_ANTIALIAS_NONE) {
50         cairo_t *cr;
51
52         surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, 256, 192);
53         cr = cairo_create (surface);
54
55         cairo_set_source_rgb (cr, 0.75, 0.25, 0.25);
56         cairo_paint (cr);
57
58         pattern = cairo_pattern_create_for_surface (cairo_get_target (cr));
59         cairo_destroy (cr);
60     } else {
61         surface = cairo_test_create_surface_from_png (ctx, png_filename);
62         pattern = cairo_pattern_create_for_surface (surface);
63     }
64
65     *width = cairo_image_surface_get_width (surface);
66     *height = cairo_image_surface_get_height (surface);
67     cairo_surface_destroy (surface);
68
69     return pattern;
70 }
71
72 static cairo_test_status_t
73 draw (cairo_t *cr, int width, int height)
74 {
75     cairo_pattern_t *image;
76     int img_width, img_height;
77
78     image = get_source (cairo_test_get_context (cr),
79                         &img_width, &img_height);
80
81     /* we don't want to debug antialiasing artifacts */
82     cairo_set_antialias (cr, ANTIALIAS);
83
84     /* dark grey background */
85     cairo_set_source_rgb (cr, 0.25, 0.25, 0.25);
86     cairo_paint (cr);
87
88     /* magic transform */
89     cairo_translate (cr, 10, -40);
90     cairo_rotate (cr, -0.05);
91
92     /* place the image on our surface */
93     cairo_set_source (cr, image);
94
95     /* paint the image */
96     cairo_rectangle (cr, 0, 0, img_width, img_height);
97     cairo_fill (cr);
98
99     cairo_pattern_destroy (image);
100
101     return CAIRO_TEST_SUCCESS;
102 }
103
104 CAIRO_TEST (xcomposite_projection,
105             "Test a bug with XRenderComposite reference computation when projecting the first trapezoid onto 16.16 space",
106             "xlib", /* keywords */
107             "target=raster", /* requirements */
108             300, 150,
109             NULL, draw)