2009-11-04 11:06:57 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2009 Benjamin Otte
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
|
* and its documentation for any purpose is hereby granted without
|
|
|
|
|
* fee, provided that the above copyright notice appear in all copies
|
|
|
|
|
* and that both that copyright notice and this permission notice
|
|
|
|
|
* appear in supporting documentation, and that the name of
|
2009-11-05 10:02:54 +00:00
|
|
|
* Benjamin Otte not be used in advertising or publicity pertaining to
|
2009-11-04 11:06:57 +01:00
|
|
|
* distribution of the software without specific, written prior
|
2009-11-05 10:02:54 +00:00
|
|
|
* permission. Benjamin Otte makes no representations about the
|
2009-11-04 11:06:57 +01:00
|
|
|
* suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* BENJAMIN OTTE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL KAI_UWE BEHRMANN BE LIABLE FOR ANY SPECIAL,
|
|
|
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Author: Benjamin Otte <otte@gnome.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "cairo-test.h"
|
|
|
|
|
|
2009-11-05 10:02:54 +00:00
|
|
|
/*
|
|
|
|
|
* Exercise a bug in the projection of a rotated trapezoid mask.
|
|
|
|
|
* I used CAIRO_ANTIALIAS_NONE and a single-color source in the test to get
|
|
|
|
|
* rid of aliasing issues in the output images. This makes some issues
|
|
|
|
|
* slightly less visible, but still fails for all of them. If you want to
|
|
|
|
|
* get a clearer view:
|
|
|
|
|
* #define ANTIALIAS CAIRO_ANTIALIAS_DEFAULT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define ANTIALIAS CAIRO_ANTIALIAS_NONE
|
|
|
|
|
|
2009-11-04 11:06:57 +01:00
|
|
|
static const char png_filename[] = "romedalen.png";
|
|
|
|
|
|
2009-11-05 10:02:54 +00:00
|
|
|
static cairo_pattern_t *
|
|
|
|
|
get_source (const cairo_test_context_t *ctx,
|
|
|
|
|
int *width, int *height)
|
2009-11-04 11:06:57 +01:00
|
|
|
{
|
2009-11-05 10:02:54 +00:00
|
|
|
cairo_surface_t *surface;
|
|
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
|
|
|
|
|
|
if (ANTIALIAS == CAIRO_ANTIALIAS_NONE) {
|
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
|
|
surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, 256, 192);
|
|
|
|
|
cr = cairo_create (surface);
|
|
|
|
|
|
|
|
|
|
cairo_set_source_rgb (cr, 0.75, 0.25, 0.25);
|
|
|
|
|
cairo_paint (cr);
|
|
|
|
|
|
|
|
|
|
pattern = cairo_pattern_create_for_surface (cairo_get_target (cr));
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
|
} else {
|
|
|
|
|
surface = cairo_test_create_surface_from_png (ctx, png_filename);
|
|
|
|
|
pattern = cairo_pattern_create_for_surface (surface);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*width = cairo_image_surface_get_width (surface);
|
|
|
|
|
*height = cairo_image_surface_get_height (surface);
|
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
|
|
|
|
|
|
return pattern;
|
2009-11-04 11:06:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static cairo_test_status_t
|
|
|
|
|
draw (cairo_t *cr, int width, int height)
|
|
|
|
|
{
|
2009-11-05 10:02:54 +00:00
|
|
|
cairo_pattern_t *image;
|
|
|
|
|
int img_width, img_height;
|
2009-11-04 11:06:57 +01:00
|
|
|
|
2009-11-05 10:02:54 +00:00
|
|
|
image = get_source (cairo_test_get_context (cr),
|
|
|
|
|
&img_width, &img_height);
|
2009-11-04 11:06:57 +01:00
|
|
|
|
|
|
|
|
/* we don't want to debug antialiasing artifacts */
|
2009-11-05 10:02:54 +00:00
|
|
|
cairo_set_antialias (cr, ANTIALIAS);
|
2009-11-04 11:06:57 +01:00
|
|
|
|
|
|
|
|
/* dark grey background */
|
|
|
|
|
cairo_set_source_rgb (cr, 0.25, 0.25, 0.25);
|
|
|
|
|
cairo_paint (cr);
|
|
|
|
|
|
|
|
|
|
/* magic transform */
|
|
|
|
|
cairo_translate (cr, 10, -40);
|
|
|
|
|
cairo_rotate (cr, -0.05);
|
|
|
|
|
|
|
|
|
|
/* place the image on our surface */
|
2009-11-05 10:02:54 +00:00
|
|
|
cairo_set_source (cr, image);
|
2009-11-04 11:06:57 +01:00
|
|
|
|
|
|
|
|
/* paint the image */
|
2009-11-05 10:02:54 +00:00
|
|
|
cairo_rectangle (cr, 0, 0, img_width, img_height);
|
2009-11-04 11:06:57 +01:00
|
|
|
cairo_fill (cr);
|
|
|
|
|
|
2009-11-05 10:02:54 +00:00
|
|
|
cairo_pattern_destroy (image);
|
2009-11-04 11:06:57 +01:00
|
|
|
|
|
|
|
|
return CAIRO_TEST_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CAIRO_TEST (xcomposite_projection,
|
|
|
|
|
"Test a bug with XRenderComposite reference computation when projecting the first trapezoid onto 16.16 space",
|
|
|
|
|
"xlib", /* keywords */
|
2009-11-04 13:56:15 +01:00
|
|
|
"target=raster", /* requirements */
|
2009-11-04 11:06:57 +01:00
|
|
|
300, 150,
|
|
|
|
|
NULL, draw)
|