[GDIPLUS]

Add some debug output to try to track winetest failures.

svn path=/trunk/; revision=67807
This commit is contained in:
Timo Kreuzer 2015-05-17 11:49:04 +00:00
parent 8613578cea
commit 22106e6ce1

View file

@ -1161,11 +1161,18 @@ static GpStatus get_region_hrgn(struct region_element *element, GpGraphics *grap
stat = GdipCreatePath(FillModeAlternate, &path);
if (stat != Ok)
{
ERR("GdipCreatePath failed: 0x%x\n", stat);
return stat;
}
stat = GdipAddPathRectangle(path, rc->X, rc->Y, rc->Width, rc->Height);
if (stat == Ok)
stat = get_path_hrgn(path, graphics, hrgn);
else
{
ERR("GdipAddPathRectangle failed: 0x%x\n", stat);
}
GdipDeletePath(path);