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:
parent
7c46a5eaa5
commit
8c75ba82f0
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue