1 Aug
2023
1 Aug
'23
2:21 p.m.
Jeffrey Smith (@whydoubt) commented about dlls/gdiplus/graphics.c:
return stat; }
+void transform_properties(GpGraphics *graphics, GDIPCONST GpMatrix *matrix, BOOL graphics_transform, + REAL *rel_width, REAL *rel_height, REAL *angle) +{ + GpPointF pt[3]; + GpMatrix xform; + + pt[0].X = 0.0; + pt[0].Y = 0.0; + pt[1].X = 1.0; + pt[1].Y = 0.0; + pt[2].X = 0.0; + pt[2].Y = 1.0;
```suggestion:-8+0 GpPointF pt[3] = {{0,0}, {1,0}, {0,1}}; GpMatrix xform; ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3471#note_40940