1
/*
2
 * Copyright © 2005 Red Hat, Inc.
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
 * Red Hat, Inc. not be used in advertising or publicity pertaining to
10
 * distribution of the software without specific, written prior
11
 * permission. Red Hat, Inc. 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
 * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17
 * FITNESS, IN NO EVENT SHALL RED HAT, INC. 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
 * Author: Carl D. Worth <cworth@cworth.org>
24
 */
25

            
26
/* Bug history
27
 *
28
 * 2005-04-11 Carl Worth <cworth@cworth.org>
29
 *
30
 *   It appears that calling cairo_show_surface after cairo_translate
31
 *   somehow applies the translation twice to the surface being
32
 *   shown. This is pretty easy to demonstrate by bringing up xsvg on
33
 *   an SVG file with an <image> and panning around a bit with the
34
 *   arrow keys.
35
 *
36
 *   This is almost certainly a regression, and I suspect there may be
37
 *   some interaction with the fix for move-to-show-surface.
38
 *
39
 * 2005-04-12 Carl Worth <cworth@cworth.org>
40
 *
41
 *   I committed a fix for this bug today.
42
 */
43

            
44
#include "cairo-test.h"
45

            
46
static cairo_test_status_t
47
3
draw (cairo_t *cr, int width, int height)
48
{
49
    cairo_surface_t *surface;
50
3
    uint32_t colors[4] = {
51
	0xffffffff, 0xffff0000,
52
	0xff00ff00, 0xff0000ff
53
    };
54
    int i;
55

            
56
15
    for (i=0; i < 4; i++) {
57
12
	surface = cairo_image_surface_create_for_data ((unsigned char *) &colors[i],
58
						       CAIRO_FORMAT_RGB24,
59
						       1, 1, 4);
60
12
	cairo_save (cr);
61
	{
62
12
	    cairo_translate (cr, i % 2, i / 2);
63
12
	    cairo_set_source_surface (cr, surface, 0, 0);
64
12
	    cairo_paint (cr);
65
	}
66
12
	cairo_restore (cr);
67
12
	cairo_surface_finish (surface); /* colors will go out of scope */
68
12
	cairo_surface_destroy (surface);
69
    }
70

            
71
3
    return CAIRO_TEST_SUCCESS;
72
}
73

            
74
1
CAIRO_TEST (translate_show_surface,
75
	    "Tests calls to cairo_show_surface after cairo_translate",
76
	    "transform", /* keywords */
77
	    NULL, /* requirements */
78
	    2, 2,
79
	    NULL, draw)