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
6bf1b638
Commit
6bf1b638
authored
Aug 31, 2017
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 01, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Account for gdi32 transform in SOFTWARE_GdipDrawThinPath.
Signed-off-by:
Vincent Povirk
<
vincent@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e1271011
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
graphics.c
dlls/gdiplus/graphics.c
+6
-2
No files found.
dlls/gdiplus/graphics.c
View file @
6bf1b638
...
...
@@ -3499,7 +3499,7 @@ static GpStatus SOFTWARE_GdipDrawThinPath(GpGraphics *graphics, GpPen *pen, GpPa
if
(
stat
==
Ok
)
{
stat
=
get_graphics_transform
(
graphics
,
CoordinateSpace
Device
,
stat
=
get_graphics_transform
(
graphics
,
WineCoordinateSpaceGdi
Device
,
CoordinateSpaceWorld
,
transform
);
if
(
stat
==
Ok
)
...
...
@@ -3528,7 +3528,7 @@ static GpStatus SOFTWARE_GdipDrawThinPath(GpGraphics *graphics, GpPen *pen, GpPa
if
(
ceilf
(
y
)
>
output_area
.
bottom
)
output_area
.
bottom
=
ceilf
(
y
);
}
stat
=
get_graphics_bounds
(
graphics
,
&
gp_bound_rect
);
stat
=
get_graphics_
device_
bounds
(
graphics
,
&
gp_bound_rect
);
}
if
(
stat
==
Ok
)
...
...
@@ -3760,9 +3760,13 @@ static GpStatus SOFTWARE_GdipDrawThinPath(GpGraphics *graphics, GpPen *pen, GpPa
/* draw output image */
if
(
stat
==
Ok
)
{
gdi_transform_acquire
(
graphics
);
stat
=
alpha_blend_pixels
(
graphics
,
output_area
.
left
,
output_area
.
top
,
(
BYTE
*
)
output_bits
,
output_width
,
output_height
,
output_width
*
4
,
PixelFormat32bppARGB
);
gdi_transform_release
(
graphics
);
}
heap_free
(
brush_bits
);
...
...
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