diff --git a/ChangeLog b/ChangeLog index 2633db5..c09b22b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-10-04 14:27 Alexander Malmberg + + * Source/art/path.m (-DPSrectclip::::): Move the call to -DPSnewpath + so it gets called on all paths through the method. + 2003-10-03 Adam Fedor * configure.ac: Use -Wl for netbsd linker options. diff --git a/Source/art/path.m b/Source/art/path.m index 72924a9..428501f 100644 --- a/Source/art/path.m +++ b/Source/art/path.m @@ -807,6 +807,8 @@ static void clip_svp_callback(void *data, int y, int start, ArtSVP *svp; int x0, y0, x1, y1; int axis_aligned; + + [self DPSnewpath]; if (all_clipped) return; @@ -845,8 +847,6 @@ static void clip_svp_callback(void *data, int y, int start, clip_sx = clip_x1 - clip_x0; clip_sy = clip_y1 - clip_y0; - - [self DPSnewpath]; } - (void) DPSinitclip;