summaryrefslogtreecommitdiff
path: root/src/cairo-path-fill.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-03-23 13:52:54 +0000
committerCarl Worth <cworth@cworth.org>2005-03-23 13:52:54 +0000
commitf218c14b9da7950b49bdab76965db22ec470d5de (patch)
tree974739c1793cbeaf63388eff8957adc84c226107 /src/cairo-path-fill.c
parent0ba7a082afa91476129f2cbdbc48360b4f83efec (diff)
Rename cairo_path_real_t to cairo_path_fixed_t and fix all _cairo_path functions to be named as _cairo_path_fixed functions.
Track name change of cairo_path_real_t and _cairo_path_fixed functions.
Diffstat (limited to 'src/cairo-path-fill.c')
-rw-r--r--src/cairo-path-fill.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/cairo-path-fill.c b/src/cairo-path-fill.c
index 9cb3903d7..3d4f7a9cd 100644
--- a/src/cairo-path-fill.c
+++ b/src/cairo-path-fill.c
@@ -174,22 +174,22 @@ _cairo_filler_close_path (void *closure)
}
cairo_status_t
-_cairo_path_fill_to_traps (cairo_path_real_t *path,
- cairo_gstate_t *gstate,
- cairo_traps_t *traps)
+_cairo_path_fixed_fill_to_traps (cairo_path_fixed_t *path,
+ cairo_gstate_t *gstate,
+ cairo_traps_t *traps)
{
cairo_status_t status = CAIRO_STATUS_SUCCESS;
cairo_filler_t filler;
_cairo_filler_init (&filler, gstate, traps);
- status = _cairo_path_interpret (path,
- CAIRO_DIRECTION_FORWARD,
- _cairo_filler_move_to,
- _cairo_filler_line_to,
- _cairo_filler_curve_to,
- _cairo_filler_close_path,
- &filler);
+ status = _cairo_path_fixed_interpret (path,
+ CAIRO_DIRECTION_FORWARD,
+ _cairo_filler_move_to,
+ _cairo_filler_line_to,
+ _cairo_filler_curve_to,
+ _cairo_filler_close_path,
+ &filler);
if (status)
goto BAIL;