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
86d55d43
Commit
86d55d43
authored
Mar 10, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Mar 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Use GdipFillPath to implement GdipFillPolygon.
parent
b17d6492
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
35 deletions
+11
-35
graphics.c
dlls/gdiplus/graphics.c
+11
-35
No files found.
dlls/gdiplus/graphics.c
View file @
86d55d43
...
...
@@ -3511,10 +3511,8 @@ GpStatus WINGDIPAPI GdipFillPieI(GpGraphics *graphics, GpBrush *brush, INT x,
GpStatus
WINGDIPAPI
GdipFillPolygon
(
GpGraphics
*
graphics
,
GpBrush
*
brush
,
GDIPCONST
GpPointF
*
points
,
INT
count
,
GpFillMode
fillMode
)
{
INT
save_state
;
GpPointF
*
ptf
=
NULL
;
POINT
*
pti
=
NULL
;
GpStatus
retval
=
Ok
;
GpStatus
stat
;
GpPath
*
path
;
TRACE
(
"(%p, %p, %p, %d, %d)
\n
"
,
graphics
,
brush
,
points
,
count
,
fillMode
);
...
...
@@ -3524,41 +3522,19 @@ GpStatus WINGDIPAPI GdipFillPolygon(GpGraphics *graphics, GpBrush *brush,
if
(
graphics
->
busy
)
return
ObjectBusy
;
if
(
!
graphics
->
hdc
)
{
FIXME
(
"graphics object has no HDC
\n
"
);
return
Ok
;
}
ptf
=
GdipAlloc
(
count
*
sizeof
(
GpPointF
));
pti
=
GdipAlloc
(
count
*
sizeof
(
POINT
));
if
(
!
ptf
||
!
pti
){
retval
=
OutOfMemory
;
goto
end
;
}
memcpy
(
ptf
,
points
,
count
*
sizeof
(
GpPointF
));
stat
=
GdipCreatePath
(
fillMode
,
&
path
);
save_state
=
SaveDC
(
graphics
->
hdc
);
EndPath
(
graphics
->
hdc
);
SetPolyFillMode
(
graphics
->
hdc
,
(
fillMode
==
FillModeAlternate
?
ALTERNATE
:
WINDING
));
transform_and_round_points
(
graphics
,
pti
,
ptf
,
count
);
BeginPath
(
graphics
->
hdc
);
Polygon
(
graphics
->
hdc
,
pti
,
count
);
EndPath
(
graphics
->
hdc
);
brush_fill_path
(
graphics
,
brush
);
if
(
stat
==
Ok
)
{
stat
=
GdipAddPathPolygon
(
path
,
points
,
count
);
RestoreDC
(
graphics
->
hdc
,
save_state
);
if
(
stat
==
Ok
)
stat
=
GdipFillPath
(
graphics
,
brush
,
path
);
end
:
GdipFree
(
ptf
);
GdipFree
(
pti
);
GdipDeletePath
(
path
);
}
return
retval
;
return
stat
;
}
GpStatus
WINGDIPAPI
GdipFillPolygonI
(
GpGraphics
*
graphics
,
GpBrush
*
brush
,
...
...
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