Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
dedd9fe2
Commit
dedd9fe2
authored
Apr 17, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Convert all points to device coordinates at once for polylines and polygons.
parent
b2f3144e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
90 additions
and
92 deletions
+90
-92
graphics.c
dlls/winex11.drv/graphics.c
+89
-90
init.c
dlls/winex11.drv/init.c
+1
-1
x11drv.h
dlls/winex11.drv/x11drv.h
+0
-1
No files found.
dlls/winex11.drv/graphics.c
View file @
dedd9fe2
...
...
@@ -1091,78 +1091,48 @@ BOOL X11DRV_PaintRgn( PHYSDEV dev, HRGN hrgn )
}
/**********************************************************************
* X11DRV_Polyline
*/
BOOL
X11DRV_Polyline
(
PHYSDEV
dev
,
const
POINT
*
pt
,
INT
count
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
int
i
;
XPoint
*
points
;
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
count
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
count
;
i
++
)
{
POINT
tmp
=
pt
[
i
];
LPtoDP
(
dev
->
hdc
,
&
tmp
,
1
);
points
[
i
].
x
=
physDev
->
dc_rect
.
left
+
tmp
.
x
;
points
[
i
].
y
=
physDev
->
dc_rect
.
top
+
tmp
.
y
;
}
if
(
X11DRV_SetupGCForPen
(
physDev
))
{
wine_tsx11_lock
();
XDrawLines
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
points
,
count
,
CoordModeOrigin
);
wine_tsx11_unlock
();
}
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
TRUE
;
}
/**********************************************************************
* X11DRV_Polygon
*/
BOOL
X11DRV_Polygon
(
PHYSDEV
dev
,
const
POINT
*
pt
,
INT
count
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
int
i
;
XPoint
*
points
;
POINT
*
points
;
XPoint
*
xpoints
;
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
count
+
1
)
)))
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
count
*
sizeof
(
*
pt
)
);
if
(
!
points
)
return
FALSE
;
memcpy
(
points
,
pt
,
count
*
sizeof
(
*
pt
)
);
LPtoDP
(
dev
->
hdc
,
points
,
count
);
if
(
!
(
xpoints
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
count
+
1
)
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
count
;
i
++
)
{
POINT
tmp
=
pt
[
i
];
LPtoDP
(
dev
->
hdc
,
&
tmp
,
1
);
points
[
i
].
x
=
physDev
->
dc_rect
.
left
+
tmp
.
x
;
points
[
i
].
y
=
physDev
->
dc_rect
.
top
+
tmp
.
y
;
xpoints
[
i
].
x
=
physDev
->
dc_rect
.
left
+
points
[
i
].
x
;
xpoints
[
i
].
y
=
physDev
->
dc_rect
.
top
+
points
[
i
].
y
;
}
points
[
count
]
=
points
[
0
];
xpoints
[
count
]
=
x
points
[
0
];
if
(
X11DRV_SetupGCForBrush
(
physDev
))
{
wine_tsx11_lock
();
XFillPolygon
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
points
,
count
+
1
,
Complex
,
CoordModeOrigin
);
x
points
,
count
+
1
,
Complex
,
CoordModeOrigin
);
wine_tsx11_unlock
();
}
if
(
X11DRV_SetupGCForPen
(
physDev
))
{
wine_tsx11_lock
();
XDrawLines
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
points
,
count
+
1
,
CoordModeOrigin
);
x
points
,
count
+
1
,
CoordModeOrigin
);
wine_tsx11_unlock
();
}
HeapFree
(
GetProcessHeap
(),
0
,
xpoints
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
TRUE
;
}
...
...
@@ -1174,48 +1144,68 @@ BOOL X11DRV_Polygon( PHYSDEV dev, const POINT* pt, INT count )
BOOL
X11DRV_PolyPolygon
(
PHYSDEV
dev
,
const
POINT
*
pt
,
const
INT
*
counts
,
UINT
polygons
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
HRGN
hrgn
;
DWORD
total
=
0
,
max
=
0
,
pos
,
i
;
POINT
*
points
;
BOOL
ret
=
FALSE
;
/* FIXME: The points should be converted to device coords before */
/* creating the region. */
for
(
i
=
0
;
i
<
polygons
;
i
++
)
{
if
(
counts
[
i
]
<
2
)
return
FALSE
;
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
total
+=
counts
[
i
];
}
hrgn
=
CreatePolyPolygonRgn
(
pt
,
counts
,
polygons
,
GetPolyFillMode
(
dev
->
hdc
)
);
X11DRV_PaintRgn
(
dev
,
hrgn
);
DeleteObject
(
hrgn
);
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
total
*
sizeof
(
*
pt
)
);
if
(
!
points
)
return
FALSE
;
memcpy
(
points
,
pt
,
total
*
sizeof
(
*
pt
)
);
LPtoDP
(
dev
->
hdc
,
points
,
total
);
/* Draw the outline of the polygons */
if
(
X11DRV_SetupGCForBrush
(
physDev
))
{
XRectangle
*
rect
;
HRGN
hrgn
=
CreatePolyPolygonRgn
(
points
,
counts
,
polygons
,
GetPolyFillMode
(
dev
->
hdc
)
);
RGNDATA
*
data
=
X11DRV_GetRegionData
(
hrgn
,
0
);
DeleteObject
(
hrgn
);
if
(
!
data
)
goto
done
;
rect
=
(
XRectangle
*
)
data
->
Buffer
;
for
(
i
=
0
;
i
<
data
->
rdh
.
nCount
;
i
++
)
{
rect
[
i
].
x
+=
physDev
->
dc_rect
.
left
;
rect
[
i
].
y
+=
physDev
->
dc_rect
.
top
;
}
wine_tsx11_lock
();
XFillRectangles
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
rect
,
data
->
rdh
.
nCount
);
wine_tsx11_unlock
();
HeapFree
(
GetProcessHeap
(),
0
,
data
);
}
if
(
X11DRV_SetupGCForPen
(
physDev
))
{
unsigned
int
i
;
int
j
,
max
=
0
;
XPoint
*
points
;
XPoint
*
xpoints
;
int
j
;
for
(
i
=
0
;
i
<
polygons
;
i
++
)
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
]
;
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
max
+
1
)
))
)
if
(
!
(
xpoints
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
(
max
+
1
)
)))
goto
done
;
for
(
i
=
pos
=
0
;
i
<
polygons
;
pos
+=
counts
[
i
++
]
)
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
polygons
;
i
++
)
{
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
{
POINT
tmp
=
*
pt
;
LPtoDP
(
dev
->
hdc
,
&
tmp
,
1
);
points
[
j
].
x
=
physDev
->
dc_rect
.
left
+
tmp
.
x
;
points
[
j
].
y
=
physDev
->
dc_rect
.
top
+
tmp
.
y
;
pt
++
;
}
points
[
j
]
=
points
[
0
];
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
{
xpoints
[
j
].
x
=
physDev
->
dc_rect
.
left
+
points
[
pos
+
j
].
x
;
xpoints
[
j
].
y
=
physDev
->
dc_rect
.
top
+
points
[
pos
+
j
].
y
;
}
xpoints
[
j
]
=
xpoints
[
0
];
wine_tsx11_lock
();
XDrawLines
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
points
,
j
+
1
,
CoordModeOrigin
);
XDrawLines
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
xpoints
,
j
+
1
,
CoordModeOrigin
);
wine_tsx11_unlock
();
}
HeapFree
(
GetProcessHeap
(),
0
,
points
);
}
HeapFree
(
GetProcessHeap
(),
0
,
x
points
);
}
return
TRUE
;
ret
=
TRUE
;
done:
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
ret
;
}
...
...
@@ -1225,35 +1215,44 @@ BOOL X11DRV_PolyPolygon( PHYSDEV dev, const POINT* pt, const INT* counts, UINT p
BOOL
X11DRV_PolyPolyline
(
PHYSDEV
dev
,
const
POINT
*
pt
,
const
DWORD
*
counts
,
DWORD
polylines
)
{
X11DRV_PDEVICE
*
physDev
=
get_x11drv_dev
(
dev
);
DWORD
total
=
0
,
max
=
0
,
pos
,
i
,
j
;
POINT
*
points
;
for
(
i
=
0
;
i
<
polylines
;
i
++
)
{
if
(
counts
[
i
]
<
2
)
return
FALSE
;
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
total
+=
counts
[
i
];
}
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
total
*
sizeof
(
*
pt
)
);
if
(
!
points
)
return
FALSE
;
memcpy
(
points
,
pt
,
total
*
sizeof
(
*
pt
)
);
LPtoDP
(
dev
->
hdc
,
points
,
total
);
if
(
X11DRV_SetupGCForPen
(
physDev
))
{
unsigned
int
i
,
j
,
max
=
0
;
XPoint
*
points
;
XPoint
*
xpoints
;
for
(
i
=
0
;
i
<
polylines
;
i
++
)
if
(
counts
[
i
]
>
max
)
max
=
counts
[
i
];
if
(
!
(
points
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
max
)))
if
(
!
(
xpoints
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
XPoint
)
*
max
)))
{
WARN
(
"No memory to convert POINTs to XPoints!
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
FALSE
;
}
for
(
i
=
0
;
i
<
polylines
;
i
++
)
for
(
i
=
pos
=
0
;
i
<
polylines
;
pos
+=
counts
[
i
++
]
)
{
for
(
j
=
0
;
j
<
counts
[
i
];
j
++
)
{
POINT
tmp
=
*
pt
;
LPtoDP
(
dev
->
hdc
,
&
tmp
,
1
);
points
[
j
].
x
=
physDev
->
dc_rect
.
left
+
tmp
.
x
;
points
[
j
].
y
=
physDev
->
dc_rect
.
top
+
tmp
.
y
;
pt
++
;
xpoints
[
j
].
x
=
physDev
->
dc_rect
.
left
+
points
[
pos
+
j
].
x
;
xpoints
[
j
].
y
=
physDev
->
dc_rect
.
top
+
points
[
pos
+
j
].
y
;
}
wine_tsx11_lock
();
XDrawLines
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
points
,
j
,
CoordModeOrigin
);
XDrawLines
(
gdi_display
,
physDev
->
drawable
,
physDev
->
gc
,
xpoints
,
j
,
CoordModeOrigin
);
wine_tsx11_unlock
();
}
HeapFree
(
GetProcessHeap
(),
0
,
points
);
HeapFree
(
GetProcessHeap
(),
0
,
x
points
);
}
HeapFree
(
GetProcessHeap
(),
0
,
points
);
return
TRUE
;
}
...
...
dlls/winex11.drv/init.c
View file @
dedd9fe2
...
...
@@ -532,7 +532,7 @@ static const struct gdi_dc_funcs x11drv_funcs =
X11DRV_PolyPolygon
,
/* pPolyPolygon */
X11DRV_PolyPolyline
,
/* pPolyPolyline */
X11DRV_Polygon
,
/* pPolygon */
X11DRV_Polyline
,
/* pPolyline */
NULL
,
/* pPolyline */
NULL
,
/* pPolylineTo */
X11DRV_PutImage
,
/* pPutImage */
X11DRV_RealizeDefaultPalette
,
/* pRealizeDefaultPalette */
...
...
dlls/winex11.drv/x11drv.h
View file @
dedd9fe2
...
...
@@ -182,7 +182,6 @@ extern BOOL X11DRV_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
extern
BOOL
X11DRV_PatBlt
(
PHYSDEV
dev
,
struct
bitblt_coords
*
dst
,
DWORD
rop
)
DECLSPEC_HIDDEN
;
extern
BOOL
X11DRV_Pie
(
PHYSDEV
dev
,
INT
left
,
INT
top
,
INT
right
,
INT
bottom
,
INT
xstart
,
INT
ystart
,
INT
xend
,
INT
yend
)
DECLSPEC_HIDDEN
;
extern
BOOL
X11DRV_Polyline
(
PHYSDEV
dev
,
const
POINT
*
pt
,
INT
count
)
DECLSPEC_HIDDEN
;
extern
BOOL
X11DRV_Polygon
(
PHYSDEV
dev
,
const
POINT
*
pt
,
INT
count
)
DECLSPEC_HIDDEN
;
extern
BOOL
X11DRV_PolyPolygon
(
PHYSDEV
dev
,
const
POINT
*
pt
,
const
INT
*
counts
,
UINT
polygons
)
DECLSPEC_HIDDEN
;
extern
BOOL
X11DRV_PolyPolyline
(
PHYSDEV
dev
,
const
POINT
*
pt
,
const
DWORD
*
counts
,
DWORD
polylines
)
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