Commit 8c75ba82 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

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

the CLIP_TO_PATH escape we want to clear it ourselves.
parent 7c46a5ea
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment