1
/*
2
 * Copyright © 2007 Red Hat, Inc.
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: Kristian Høgsberg <krh@redhat.com>
25
 */
26

            
27
#include "cairo-test.h"
28

            
29
#include <stdio.h>
30
#include <stdlib.h>
31
#include <string.h>
32
#include <math.h>
33

            
34
#include <cairo.h>
35

            
36
#define WIDTH	32
37
#define HEIGHT	WIDTH
38

            
39
#define IMAGE_WIDTH	(3 * WIDTH)
40
#define IMAGE_HEIGHT	IMAGE_WIDTH
41

            
42
/* Draw the word cairo at NUM_TEXT different angles */
43
static cairo_test_status_t
44
3
draw (cairo_t *cr, int width, int height)
45
{
46
    cairo_surface_t *stamp;
47
    cairo_t *cr2;
48

            
49
    /* Draw a translucent rectangle for reference where the rotated
50
     * image should be. */
51
3
    cairo_new_path (cr);
52
3
    cairo_rectangle (cr, WIDTH, HEIGHT, WIDTH, HEIGHT);
53
3
    cairo_set_source_rgba (cr, 1, 1, 0, 0.3);
54
3
    cairo_fill (cr);
55

            
56
#if 1 /* Set to 0 to generate reference image */
57
3
    cairo_translate (cr, 2 * WIDTH, 2 * HEIGHT);
58
3
    cairo_rotate (cr, M_PI);
59
#else
60
    cairo_translate (cr, WIDTH, HEIGHT);
61
#endif
62

            
63
3
    stamp = cairo_surface_create_similar (cairo_get_group_target (cr),
64
					  CAIRO_CONTENT_COLOR_ALPHA,
65
					  WIDTH, HEIGHT);
66
3
    cr2 = cairo_create (stamp);
67
3
    cairo_surface_destroy (stamp);
68
    {
69
3
	cairo_new_path (cr2);
70
3
	cairo_rectangle (cr2, WIDTH / 4, HEIGHT / 4, WIDTH / 2, HEIGHT / 2);
71
3
	cairo_set_source_rgba (cr2, 1, 0, 0, 0.8);
72
3
	cairo_fill (cr2);
73

            
74
3
	cairo_rectangle (cr2, 0, 0, WIDTH, HEIGHT);
75
3
	cairo_set_line_width (cr2, 2);
76
3
	cairo_set_source_rgb (cr2, 0, 0, 0);
77
3
	cairo_stroke (cr2);
78
    }
79
3
    cairo_set_source_surface (cr, cairo_get_target (cr2), 0, 0);
80
3
    cairo_destroy (cr2);
81

            
82
3
    cairo_paint (cr);
83

            
84
3
    return CAIRO_TEST_SUCCESS;
85
}
86

            
87
1
CAIRO_TEST (pixman_rotate,
88
	    "Exposes pixman off-by-one error when rotating",
89
	    "image, transform", /* keywords */
90
	    NULL, /* requirements */
91
	    IMAGE_WIDTH, IMAGE_HEIGHT,
92
	    NULL, draw)