wineps: Fall through to the null driver for Polyline and Polygon.
This commit is contained in:
parent
25e300dcad
commit
d45eb00abc
@ -350,15 +350,6 @@ BOOL PSDRV_PolyPolyline( PHYSDEV dev, const POINT* pts, const DWORD* counts, DWO
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
|
||||||
* PSDRV_Polyline
|
|
||||||
*/
|
|
||||||
BOOL PSDRV_Polyline( PHYSDEV dev, const POINT* pt, INT count )
|
|
||||||
{
|
|
||||||
return PSDRV_PolyPolyline( dev, pt, (LPDWORD) &count, 1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* PSDRV_PolyPolygon
|
* PSDRV_PolyPolygon
|
||||||
*/
|
*/
|
||||||
@ -401,15 +392,6 @@ BOOL PSDRV_PolyPolygon( PHYSDEV dev, const POINT* pts, const INT* counts, UINT p
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
|
||||||
* PSDRV_Polygon
|
|
||||||
*/
|
|
||||||
BOOL PSDRV_Polygon( PHYSDEV dev, const POINT* pt, INT count )
|
|
||||||
{
|
|
||||||
return PSDRV_PolyPolygon( dev, pt, &count, 1 );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* PSDRV_PolyBezier
|
* PSDRV_PolyBezier
|
||||||
*/
|
*/
|
||||||
|
@ -897,8 +897,8 @@ static const struct gdi_dc_funcs psdrv_funcs =
|
|||||||
NULL, /* pPolyDraw */
|
NULL, /* pPolyDraw */
|
||||||
PSDRV_PolyPolygon, /* pPolyPolygon */
|
PSDRV_PolyPolygon, /* pPolyPolygon */
|
||||||
PSDRV_PolyPolyline, /* pPolyPolyline */
|
PSDRV_PolyPolyline, /* pPolyPolyline */
|
||||||
PSDRV_Polygon, /* pPolygon */
|
NULL, /* pPolygon */
|
||||||
PSDRV_Polyline, /* pPolyline */
|
NULL, /* pPolyline */
|
||||||
NULL, /* pPolylineTo */
|
NULL, /* pPolylineTo */
|
||||||
PSDRV_PutImage, /* pPutImage */
|
PSDRV_PutImage, /* pPutImage */
|
||||||
NULL, /* pRealizeDefaultPalette */
|
NULL, /* pRealizeDefaultPalette */
|
||||||
|
@ -450,8 +450,6 @@ extern BOOL PSDRV_PolyBezier( PHYSDEV dev, const POINT *pts, DWORD count ) DECLS
|
|||||||
extern BOOL PSDRV_PolyBezierTo( PHYSDEV dev, const POINT *pts, DWORD count ) DECLSPEC_HIDDEN;
|
extern BOOL PSDRV_PolyBezierTo( PHYSDEV dev, const POINT *pts, DWORD count ) DECLSPEC_HIDDEN;
|
||||||
extern BOOL PSDRV_PolyPolygon( PHYSDEV dev, const POINT* pts, const INT* counts, UINT polygons ) DECLSPEC_HIDDEN;
|
extern BOOL PSDRV_PolyPolygon( PHYSDEV dev, const POINT* pts, const INT* counts, UINT polygons ) DECLSPEC_HIDDEN;
|
||||||
extern BOOL PSDRV_PolyPolyline( PHYSDEV dev, const POINT* pts, const DWORD* counts, DWORD polylines ) DECLSPEC_HIDDEN;
|
extern BOOL PSDRV_PolyPolyline( PHYSDEV dev, const POINT* pts, const DWORD* counts, DWORD polylines ) DECLSPEC_HIDDEN;
|
||||||
extern BOOL PSDRV_Polygon( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
|
|
||||||
extern BOOL PSDRV_Polyline( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
|
|
||||||
extern DWORD PSDRV_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info,
|
extern DWORD PSDRV_PutImage( PHYSDEV dev, HBITMAP hbitmap, HRGN clip, BITMAPINFO *info,
|
||||||
const struct gdi_image_bits *bits, struct bitblt_coords *src,
|
const struct gdi_image_bits *bits, struct bitblt_coords *src,
|
||||||
struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
|
struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user