[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.
This commit is contained in:
Brian Ewins 2007-03-25 23:31:40 +01:00
parent d2cdd5eba8
commit c8e37af4b0

View file

@ -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;