[cairo-commit] cairo/src cairo-surface.c,1.108,1.109

Keith Packard commit at pdx.freedesktop.org
Tue Nov 1 10:33:36 PST 2005


Committed by: keithp

Update of /cvs/cairo/cairo/src
In directory gabe:/tmp/cvs-serv5747/src

Modified Files:
	cairo-surface.c 
Log Message:
2005-11-01  Keith Packard  <keithp at keithp.com>

	* src/cairo-surface.c: (_fallback_stroke), (_cairo_surface_stroke):
	Clean up argument order for _fallback_stroke to match other
	functions


Index: cairo-surface.c
===================================================================
RCS file: /cvs/cairo/cairo/src/cairo-surface.c,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- cairo-surface.c	1 Nov 2005 00:55:21 -0000	1.108
+++ cairo-surface.c	1 Nov 2005 18:33:34 -0000	1.109
@@ -1307,9 +1307,9 @@
 		  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 @@
     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 @@
     */
 
     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);
 }



More information about the cairo-commit mailing list