From 46c1f411dfacb5035d374bb5d86c4c5777089828 Mon Sep 17 00:00:00 2001 From: Alexander Malmberg Date: Sat, 4 Oct 2003 12:30:33 +0000 Subject: [PATCH] (-DPSrectclip::::): Make sure -DPSnewpath is called on all paths. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@17777 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/art/path.m | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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;