Module: wine Branch: master Commit: 2d6daeb8ea0746e9561e67c67f8fe23aa8ee57b8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2d6daeb8ea0746e9561e67c67f...
Author: Louis Lenders xerox.xerox2000x@gmail.com Date: Tue Mar 22 21:18:56 2016 +0100
gdiplus/tests: Add test for GdipTransformPath with null-matrix.
Signed-off-by: Louis Lenders xerox.xerox2000x@gmail.com Signed-off-by: Vincent Povirk vincent@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/gdiplus/tests/graphicspath.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/gdiplus/tests/graphicspath.c b/dlls/gdiplus/tests/graphicspath.c index 24619e5..c43fb42 100644 --- a/dlls/gdiplus/tests/graphicspath.c +++ b/dlls/gdiplus/tests/graphicspath.c @@ -1012,6 +1012,9 @@ static void test_flatten(void) status = GdipFlattenPath(path, NULL, 1.0); expect(Ok, status);
+ status = GdipTransformPath(path, 0); + expect(Ok, status); + status = GdipAddPathEllipse(path, 0.0, 0.0, 100.0, 50.0); expect(Ok, status);