gdiplus: Test that clip region doesn't account for gdi32 transform changes.

Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Vincent Povirk 2017-08-30 12:32:13 -05:00 committed by Alexandre Julliard
parent 3ba77b956d
commit c579661006
1 changed files with 10 additions and 0 deletions

View File

@ -4959,6 +4959,16 @@ static void test_clipping(void)
ok(rect.X == 100.0 && rect.Y == 100.0 && rect.Width == 100.0 && rect.Height == 100.0,
"expected 100.0,100.0-100.0,100.0, got %.2f,%.2f-%.2f,%.2f\n", rect.X, rect.Y, rect.Width, rect.Height);
/* Clip region does not account for changes to gdi32 transform */
SetViewportOrgEx(hdc, 10, 10, NULL);
status = GdipGetClipBounds(graphics, &rect);
expect(Ok, status);
ok(rect.X == 100.0 && rect.Y == 100.0 && rect.Width == 100.0 && rect.Height == 100.0,
"expected 100.0,100.0-100.0,100.0, got %.2f,%.2f-%.2f,%.2f\n", rect.X, rect.Y, rect.Width, rect.Height);
SetViewportOrgEx(hdc, 0, 0, NULL);
status = GdipSetEmpty(region);
expect(Ok, status);
status = GdipGetClip(graphics, region);