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
8871af7e
Commit
8871af7e
authored
Sep 20, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Properly set the first point to start when widening open figures.
parent
47c433de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
graphicspath.c
dlls/gdiplus/graphicspath.c
+4
-2
No files found.
dlls/gdiplus/graphicspath.c
View file @
8871af7e
...
...
@@ -1806,15 +1806,16 @@ static void widen_open_figure(GpPath *path, GpPen *pen, int start, int end,
path_list_node_t
**
last_point
)
{
int
i
;
path_list_node_t
*
prev_point
;
if
(
end
<=
start
)
return
;
prev_point
=
*
last_point
;
widen_cap
(
&
path
->
pathdata
.
Points
[
start
],
&
path
->
pathdata
.
Points
[
start
+
1
],
pen
,
pen
->
startcap
,
pen
->
customstart
,
FALSE
,
TRUE
,
last_point
);
(
*
last_point
)
->
type
=
PathPointTypeStart
;
for
(
i
=
start
+
1
;
i
<
end
;
i
++
)
widen_joint
(
&
path
->
pathdata
.
Points
[
i
-
1
],
&
path
->
pathdata
.
Points
[
i
],
&
path
->
pathdata
.
Points
[
i
+
1
],
pen
,
last_point
);
...
...
@@ -1829,6 +1830,7 @@ static void widen_open_figure(GpPath *path, GpPen *pen, int start, int end,
widen_cap
(
&
path
->
pathdata
.
Points
[
start
],
&
path
->
pathdata
.
Points
[
start
+
1
],
pen
,
pen
->
startcap
,
pen
->
customstart
,
TRUE
,
FALSE
,
last_point
);
prev_point
->
next
->
type
=
PathPointTypeStart
;
(
*
last_point
)
->
type
|=
PathPointTypeCloseSubpath
;
}
...
...
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