Commit fd15bd22 authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

gdiplus: Use internal function to add bezier points for curve.

parent 7ff16aff
...@@ -424,7 +424,7 @@ GpStatus WINGDIPAPI GdipAddPathClosedCurve2(GpPath *path, GDIPCONST GpPointF *po ...@@ -424,7 +424,7 @@ GpStatus WINGDIPAPI GdipAddPathClosedCurve2(GpPath *path, GDIPCONST GpPointF *po
pt[len_pt-1].X = pt[0].X; pt[len_pt-1].X = pt[0].X;
pt[len_pt-1].Y = pt[0].Y; pt[len_pt-1].Y = pt[0].Y;
stat = GdipAddPathBeziers(path, pt, len_pt); stat = extend_current_figure(path, pt, len_pt, PathPointTypeBezier);
/* close figure */ /* close figure */
if(stat == Ok){ if(stat == Ok){
...@@ -532,7 +532,7 @@ GpStatus WINGDIPAPI GdipAddPathCurve2(GpPath *path, GDIPCONST GpPointF *points, ...@@ -532,7 +532,7 @@ GpStatus WINGDIPAPI GdipAddPathCurve2(GpPath *path, GDIPCONST GpPointF *points,
pt[len_pt-1].X = points[count-1].X; pt[len_pt-1].X = points[count-1].X;
pt[len_pt-1].Y = points[count-1].Y; pt[len_pt-1].Y = points[count-1].Y;
stat = GdipAddPathBeziers(path, pt, len_pt); stat = extend_current_figure(path, pt, len_pt, PathPointTypeBezier);
heap_free(pt); heap_free(pt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment