From c2d08de3c2e2c6c4e416824ba8ee45b7b60da775 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Thu, 10 Mar 2011 16:17:20 -0600 Subject: [PATCH 1/9] gdiplus: Remove gdi32 fallback for bitmaps from GdipFillRegion. We can always do a fill directly to the image bits when gdi32 can do it. --- dlls/gdiplus/graphics.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 29dea0a..4d059f8 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -3919,9 +3919,6 @@ GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush, if (stat == NotImplemented) stat = SOFTWARE_GdipFillRegion(graphics, brush, region); - if (stat == NotImplemented && graphics->image) - stat = GDI32_GdipFillRegion(graphics, brush, region); - if (stat == NotImplemented) { FIXME("not implemented for brushtype %i\n", brush->bt); -- 1.7.2.3