From a9b786728cce6e9f68df9c148b0b467316fe4895 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 17 Apr 2012 16:40:47 +0200 Subject: [PATCH] winex11: ExtFloodFill does take the current ROP into account. --- dlls/winex11.drv/graphics.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/winex11.drv/graphics.c b/dlls/winex11.drv/graphics.c index 350a936a2e3..9959a2980e6 100644 --- a/dlls/winex11.drv/graphics.c +++ b/dlls/winex11.drv/graphics.c @@ -1377,9 +1377,7 @@ BOOL X11DRV_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT fillTy { unsigned long pixel = X11DRV_PALETTE_ToPhysical( physDev, color ); - /* ROP mode is always GXcopy for flood-fill */ wine_tsx11_lock(); - XSetFunction( gdi_display, physDev->gc, GXcopy ); X11DRV_InternalFloodFill(image, physDev, pt.x - rect.left, pt.y - rect.top, -- 2.11.4.GIT