Clean up argument order for _fallback_stroke to match other functions

This commit is contained in:
Keith Packard 2005-11-01 10:33:34 +00:00
parent a7228cc37a
commit a3ae0aecc4
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2005-11-01 Keith Packard <keithp@keithp.com>
* src/cairo-surface.c: (_fallback_stroke), (_cairo_surface_stroke):
Clean up argument order for _fallback_stroke to match other
functions
2005-10-31 Carl Worth <cworth@cworth.org>
Originally 2005-10-28 Keith Packard <keithp@keithp.com>:

View file

@ -1307,9 +1307,9 @@ _fallback_stroke (cairo_operator_t operator,
cairo_pattern_t *source_pattern,
cairo_surface_t *dst,
cairo_path_fixed_t *path,
double tolerance,
cairo_matrix_t *ctm,
cairo_matrix_t *ctm_inverse,
double tolerance,
cairo_antialias_t antialias,
double line_width,
@ -1375,7 +1375,7 @@ _cairo_surface_stroke (cairo_operator_t operator,
if (dst->backend->stroke) {
cairo_status_t status;
status = dst->backend->stroke (operator, source_pattern, dst, path,
ctm, ctm_inverse, tolerance, antialias,
tolerance, ctm, ctm_inverse, antialias,
line_width, line_cap,
line_join, miter_limit,
dash, num_dashes, dash_offset);
@ -1385,7 +1385,7 @@ _cairo_surface_stroke (cairo_operator_t operator,
*/
return _fallback_stroke (operator, source_pattern, dst, path,
ctm, ctm_inverse, tolerance, antialias,
tolerance, ctm, ctm_inverse, antialias,
line_width, line_cap, line_join, miter_limit,
dash, num_dashes, dash_offset);
}