Module: wine Branch: master Commit: 571a383d7e5cb8251be3cd6cfd85d08e8133fac8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=571a383d7e5cb8251be3cd6cfd...
Author: Reece H. Dunn msclrhd@hotmail.com Date: Sun Feb 3 21:13:15 2008 +0000
gdiplus: Fix the bezier arc path test on all Windows platforms.
---
dlls/gdiplus/tests/graphicspath.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/tests/graphicspath.c b/dlls/gdiplus/tests/graphicspath.c index b2d5ef9..3860a2e 100644 --- a/dlls/gdiplus/tests/graphicspath.c +++ b/dlls/gdiplus/tests/graphicspath.c @@ -224,7 +224,7 @@ static path_test_t arc_path[] = { {187.9, 716.5, PathPointTypeBezier, 0, 0}, /*34*/ {293.1, 841.8, PathPointTypeBezier, 0, 0}, /*35*/ {450.9, 824.1, PathPointTypeBezier, 0, 0}, /*36*/ - {540.4, 676.9, PathPointTypeBezier, 0, 0} /*37*/ + {540.4, 676.9, PathPointTypeBezier | PathPointTypeCloseSubpath, 0, 1} /*37*/ };
static void test_arc(void)