The PostScript clip operator doesn't clear the current path, so after

the CLIP_TO_PATH escape we want to clear it ourselves.
This commit is contained in:
Huw Davies 2004-05-12 23:03:22 +00:00 committed by Alexandre Julliard
parent 7c46a5eaa5
commit 8c75ba82f0
1 changed files with 1 additions and 0 deletions

View File

@ -288,6 +288,7 @@ INT PSDRV_ExtEscape( PSDRV_PDEVICE *physDev, INT nEscape, INT cbInput, LPCVOID i
TRACE("CLIP_TO_PATH: CLIP_INCLUSIVE\n");
/* FIXME to clip or eoclip ? (see PATH_INFO.FillMode) */
PSDRV_WriteClip(physDev);
PSDRV_WriteNewPath(physDev);
return 1;
case CLIP_EXCLUSIVE:
FIXME("CLIP_EXCLUSIVE: not implemented\n");