[path] Fix regression introduced with 005436

The order of the multiplication of the CTM and device_transform was
reversed.
This commit is contained in:
Chris Wilson 2009-03-01 10:10:24 +00:00
parent b30de64a8c
commit 9304984f4e

View file

@ -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) {