From e68eb874e9cdeb087834a65cc356e94d9bbbeeb8 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 5 Dec 2011 16:38:05 +0000 Subject: [PATCH] fallback: fix the offset for painting Signed-off-by: Chris Wilson --- src/cairo-fallback-compositor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cairo-fallback-compositor.c b/src/cairo-fallback-compositor.c index 105859d62..767fc6b7f 100644 --- a/src/cairo-fallback-compositor.c +++ b/src/cairo-fallback-compositor.c @@ -55,8 +55,8 @@ _cairo_fallback_compositor_paint (const cairo_compositor_t *_compositor, image = cairo_surface_map_to_image (extents->surface, &extents->unbounded); status = _cairo_surface_offset_paint (image, - -extents->unbounded.x, - -extents->unbounded.y, + extents->unbounded.x, + extents->unbounded.y, extents->op, &extents->source_pattern.base, extents->clip);