mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-03 05:28:01 +02:00
[path] Fix regression introduced with 005436
The order of the multiplication of the CTM and device_transform was reversed.
This commit is contained in:
parent
b30de64a8c
commit
9304984f4e
1 changed files with 2 additions and 2 deletions
|
|
@ -452,8 +452,8 @@ _cairo_path_append_to_context (const cairo_path_t *path,
|
|||
|
||||
user_to_backend = cr->gstate->ctm;
|
||||
cairo_matrix_multiply (&user_to_backend,
|
||||
&cr->gstate->target->device_transform,
|
||||
&user_to_backend);
|
||||
&user_to_backend,
|
||||
&cr->gstate->target->device_transform);
|
||||
|
||||
end = &path->data[path->num_data];
|
||||
for (p = &path->data[0]; p < end; p += p->header.length) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue