From bcbf704a5d3cfcad50285d7ee81d38ad81dd68a1 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Thu, 17 Nov 2016 23:36:54 +0000 Subject: [PATCH] [GDI32_WINETEST] Sync with Wine Staging 1.9.23. CORE-12409 svn path=/trunk/; revision=73314 --- rostests/winetests/gdi32/dib.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rostests/winetests/gdi32/dib.c b/rostests/winetests/gdi32/dib.c index fe5b1e438cd..dffe557d47b 100644 --- a/rostests/winetests/gdi32/dib.c +++ b/rostests/winetests/gdi32/dib.c @@ -2796,6 +2796,9 @@ static void draw_graphics(HDC hdc, const BITMAPINFO *bmi, BYTE *bits) ExtSelectClipRgn( hdc, NULL, RGN_COPY ); + ret = ExtFloodFill( hdc, -1, -1, RGB( 0, 0xff, 0 ), FLOODFILLSURFACE ); + ok (!ret, "got ret %d\n", ret); + SelectObject(hdc, orig_brush); SelectObject(hdc, orig_pen); DeleteObject(solid_brush);