mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-07 21:50:21 +01:00
[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:
parent
d2cdd5eba8
commit
c8e37af4b0
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue