Commit 2d6daeb8 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

gdiplus/tests: Add test for GdipTransformPath with null-matrix.

parent 36fdc6ab
......@@ -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);
......
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