17 Aug
2023
17 Aug
'23
3:35 p.m.
Jeffrey Smith (@whydoubt) commented about dlls/gdiplus/tests/pathiterator.c:
+ GdipDeletePathIter(iter); + GdipDeletePath(path);
- /* closed */ - GdipClosePathFigure(path); - GdipCreatePathIter(&iter, path); - start = end = result = (INT)0xdeadbeef; + + /* Single PathPointTypeStart point */ + GdipCreatePath(FillModeAlternate, &path); + point.X = 1.0; + point.Y = 2.0; + stat = GdipAddPathLine2(path, &point, 1); + expect(Ok, stat); + GdipStartPathFigure(path); I don't believe this GdipStartPathFigure has any effect.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3581#note_42626