mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 12:03:45 +00:00
Added a call to the newpath operator immediately before the arc
operator.
This commit is contained in:
parent
cfbafe3247
commit
63ff31eacd
2 changed files with 13 additions and 0 deletions
|
@ -152,6 +152,9 @@ static char psfill[] =
|
|||
static char pseofill[] =
|
||||
"eofill\n";
|
||||
|
||||
static char psnewpath[] =
|
||||
"newpath\n";
|
||||
|
||||
static char psclosepath[] =
|
||||
"closepath\n";
|
||||
|
||||
|
@ -508,6 +511,10 @@ BOOL PSDRV_WriteArc(DC *dc, INT x, INT y, INT w, INT h, double ang1,
|
|||
/* Make angles -ve and swap order because we're working with an upside
|
||||
down y-axis */
|
||||
sprintf(buf, psarc, x, y, w, h, -ang2, -ang1);
|
||||
|
||||
/* Write newpath operator to ensure there's no line segment drawn
|
||||
from the current point to the beginning of the arc. */
|
||||
PSDRV_WriteNewPath( dc );
|
||||
return PSDRV_WriteSpool(dc, buf, strlen(buf));
|
||||
}
|
||||
|
||||
|
@ -679,6 +686,11 @@ BOOL PSDRV_WriteGRestore(DC *dc)
|
|||
return PSDRV_WriteSpool(dc, psgrestore, sizeof(psgrestore)-1);
|
||||
}
|
||||
|
||||
BOOL PSDRV_WriteNewPath(DC *dc)
|
||||
{
|
||||
return PSDRV_WriteSpool(dc, psnewpath, sizeof(psnewpath)-1);
|
||||
}
|
||||
|
||||
BOOL PSDRV_WriteClosePath(DC *dc)
|
||||
{
|
||||
return PSDRV_WriteSpool(dc, psclosepath, sizeof(psclosepath)-1);
|
||||
|
|
|
@ -286,6 +286,7 @@ extern BOOL PSDRV_WriteFill(DC *dc);
|
|||
extern BOOL PSDRV_WriteEOFill(DC *dc);
|
||||
extern BOOL PSDRV_WriteGSave(DC *dc);
|
||||
extern BOOL PSDRV_WriteGRestore(DC *dc);
|
||||
extern BOOL PSDRV_WriteNewPath(DC *dc);
|
||||
extern BOOL PSDRV_WriteClosePath(DC *dc);
|
||||
extern BOOL PSDRV_WriteClip(DC *dc);
|
||||
extern BOOL PSDRV_WriteRectClip(DC *dc, CHAR *pszArrayName);
|
||||
|
|
Loading…
Reference in a new issue