2007-04-11 23:49:01 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2007 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Author: Kristian Høgsberg <krh@redhat.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2005-02-07 09:38:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
|
|
#include <cairo.h>
|
|
|
|
|
|
2005-03-29 00:02:19 +00:00
|
|
|
#include "cairo-test.h"
|
2005-02-07 09:38:43 +00:00
|
|
|
|
|
|
|
|
#define WIDTH 32
|
|
|
|
|
#define HEIGHT WIDTH
|
|
|
|
|
|
|
|
|
|
#define IMAGE_WIDTH (3 * WIDTH)
|
|
|
|
|
#define IMAGE_HEIGHT IMAGE_WIDTH
|
|
|
|
|
|
2006-07-13 12:58:24 -04:00
|
|
|
static cairo_test_draw_function_t draw;
|
|
|
|
|
|
2008-08-11 21:12:45 +01:00
|
|
|
static const cairo_test_t test = {
|
2005-03-29 00:02:19 +00:00
|
|
|
"pixman-rotate",
|
2005-02-07 09:38:43 +00:00
|
|
|
"Exposes pixman off-by-one error when rotating",
|
2006-07-11 22:19:39 -04:00
|
|
|
IMAGE_WIDTH, IMAGE_HEIGHT,
|
|
|
|
|
draw
|
2005-02-07 09:38:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Draw the word cairo at NUM_TEXT different angles */
|
2005-03-09 13:58:20 +00:00
|
|
|
static cairo_test_status_t
|
2005-02-07 09:38:43 +00:00
|
|
|
draw (cairo_t *cr, int width, int height)
|
|
|
|
|
{
|
2005-05-06 13:23:41 +00:00
|
|
|
cairo_surface_t *stamp;
|
|
|
|
|
cairo_t *cr2;
|
2005-02-07 09:38:43 +00:00
|
|
|
|
2008-10-21 11:18:37 +01:00
|
|
|
/* Draw a translucent rectangle for reference where the rotated
|
|
|
|
|
* image should be. */
|
|
|
|
|
cairo_new_path (cr);
|
|
|
|
|
cairo_rectangle (cr, WIDTH, HEIGHT, WIDTH, HEIGHT);
|
|
|
|
|
cairo_set_source_rgba (cr, 1, 1, 0, 0.3);
|
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
|
|
|
|
|
#if 1 /* Set to 0 to generate reference image */
|
|
|
|
|
cairo_translate (cr, 2 * WIDTH, 2 * HEIGHT);
|
|
|
|
|
cairo_rotate (cr, M_PI);
|
|
|
|
|
#else
|
|
|
|
|
cairo_translate (cr, WIDTH, HEIGHT);
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-12-20 18:15:48 +00:00
|
|
|
stamp = cairo_surface_create_similar (cairo_get_group_target (cr),
|
2005-07-08 10:12:28 +00:00
|
|
|
CAIRO_CONTENT_COLOR_ALPHA,
|
2005-02-07 09:38:43 +00:00
|
|
|
WIDTH, HEIGHT);
|
2005-05-06 13:23:41 +00:00
|
|
|
cr2 = cairo_create (stamp);
|
2008-10-21 11:18:37 +01:00
|
|
|
cairo_surface_destroy (stamp);
|
2005-05-06 13:23:41 +00:00
|
|
|
{
|
|
|
|
|
cairo_new_path (cr2);
|
|
|
|
|
cairo_rectangle (cr2, WIDTH / 4, HEIGHT / 4, WIDTH / 2, HEIGHT / 2);
|
|
|
|
|
cairo_set_source_rgba (cr2, 1, 0, 0, 0.8);
|
|
|
|
|
cairo_fill (cr2);
|
|
|
|
|
|
|
|
|
|
cairo_rectangle (cr2, 0, 0, WIDTH, HEIGHT);
|
|
|
|
|
cairo_set_line_width (cr2, 2);
|
|
|
|
|
cairo_set_source_rgb (cr2, 0, 0, 0);
|
|
|
|
|
cairo_stroke (cr2);
|
|
|
|
|
}
|
2008-10-21 11:18:37 +01:00
|
|
|
cairo_set_source_surface (cr, cairo_get_target (cr2), 0, 0);
|
2005-05-06 13:23:41 +00:00
|
|
|
cairo_destroy (cr2);
|
2005-02-07 09:38:43 +00:00
|
|
|
|
2005-05-03 08:33:32 +00:00
|
|
|
cairo_paint (cr);
|
2005-02-07 09:38:43 +00:00
|
|
|
|
2005-03-09 13:58:20 +00:00
|
|
|
return CAIRO_TEST_SUCCESS;
|
2005-02-07 09:38:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (void)
|
|
|
|
|
{
|
2006-07-11 22:19:39 -04:00
|
|
|
return cairo_test (&test);
|
2005-02-07 09:38:43 +00:00
|
|
|
}
|