[1/3] gdiplus: Account for gdi32 transform in SOFTWARE_GdipDrawPath.

Vincent Povirk vincent at codeweavers.com
Tue Sep 5 13:43:31 CDT 2017


Signed-off-by: Vincent Povirk <vincent at codeweavers.com>
---
 dlls/gdiplus/graphics.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 4413e75..da70899 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -3799,7 +3799,7 @@ static GpStatus SOFTWARE_GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *
         points[1].X = pen->width;
         points[2].Y = pen->width;
 
-        stat = GdipTransformPoints(graphics, CoordinateSpaceDevice,
+        stat = gdip_transform_points(graphics, WineCoordinateSpaceGdiDevice,
             CoordinateSpaceWorld, points, 3);
 
         if (stat != Ok)
@@ -3823,7 +3823,7 @@ static GpStatus SOFTWARE_GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *
         stat = GdipCreateMatrix(&transform);
 
         if (stat == Ok)
-            stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
+            stat = get_graphics_transform(graphics, WineCoordinateSpaceGdiDevice,
                 CoordinateSpaceWorld, transform);
     }
     else
@@ -3831,7 +3831,7 @@ static GpStatus SOFTWARE_GdipDrawPath(GpGraphics *graphics, GpPen *pen, GpPath *
         /* Set flatness based on the final coordinate space */
         GpMatrix t;
 
-        stat = get_graphics_transform(graphics, CoordinateSpaceDevice,
+        stat = get_graphics_transform(graphics, WineCoordinateSpaceGdiDevice,
             CoordinateSpaceWorld, &t);
 
         if (stat != Ok)
-- 
2.7.4




More information about the wine-patches mailing list