From c8e37af4b06fffe1aa1a1c3d2cd6481cc2cf8938 Mon Sep 17 00:00:00 2001 From: Brian Ewins Date: Sun, 25 Mar 2007 23:31:40 +0100 Subject: [PATCH] [quartz] fix order of fields in matrix conversion There was a typo flipping the xy and yx fields when a cairo matrix was converted to a quartz matrix. --- src/cairo-quartz-surface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cairo-quartz-surface.c b/src/cairo-quartz-surface.c index 33f3a10ca..3617b1e8e 100644 --- a/src/cairo-quartz-surface.c +++ b/src/cairo-quartz-surface.c @@ -286,8 +286,8 @@ _cairo_quartz_cairo_matrix_to_quartz (const cairo_matrix_t *src, CGAffineTransform *dst) { dst->a = src->xx; - dst->b = src->xy; - dst->c = src->yx; + dst->b = src->yx; + dst->c = src->xy; dst->d = src->yy; dst->tx = src->x0; dst->ty = src->y0;