Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d45eb00a
Commit
d45eb00a
authored
Dec 05, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Fall through to the null driver for Polyline and Polygon.
parent
25e300dc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
22 deletions
+2
-22
graphics.c
dlls/wineps.drv/graphics.c
+0
-18
init.c
dlls/wineps.drv/init.c
+2
-2
psdrv.h
dlls/wineps.drv/psdrv.h
+0
-2
No files found.
dlls/wineps.drv/graphics.c
View file @
d45eb00a
...
...
@@ -351,15 +351,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
*/
BOOL
PSDRV_PolyPolygon
(
PHYSDEV
dev
,
const
POINT
*
pts
,
const
INT
*
counts
,
UINT
polygons
)
...
...
@@ -402,15 +393,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
*/
BOOL
PSDRV_PolyBezier
(
PHYSDEV
dev
,
const
POINT
*
pts
,
DWORD
count
)
...
...
dlls/wineps.drv/init.c
View file @
d45eb00a
...
...
@@ -897,8 +897,8 @@ static const struct gdi_dc_funcs psdrv_funcs =
NULL
,
/* pPolyDraw */
PSDRV_PolyPolygon
,
/* pPolyPolygon */
PSDRV_PolyPolyline
,
/* pPolyPolyline */
PSDRV_Polygon
,
/* pPolygon */
PSDRV_Polyline
,
/* pPolyline */
NULL
,
/* pPolygon */
NULL
,
/* pPolyline */
NULL
,
/* pPolylineTo */
PSDRV_PutImage
,
/* pPutImage */
NULL
,
/* pRealizeDefaultPalette */
...
...
dlls/wineps.drv/psdrv.h
View file @
d45eb00a
...
...
@@ -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_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_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
,
const
struct
gdi_image_bits
*
bits
,
struct
bitblt_coords
*
src
,
struct
bitblt_coords
*
dst
,
DWORD
rop
)
DECLSPEC_HIDDEN
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment