Commit 77f5a07c authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Remove gdi32 fallback for bitmaps from GdipFillRegion.

We can always do a fill directly to the image bits when gdi32 can do it.
parent a13fce16
...@@ -3919,9 +3919,6 @@ GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush, ...@@ -3919,9 +3919,6 @@ GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
if (stat == NotImplemented) if (stat == NotImplemented)
stat = SOFTWARE_GdipFillRegion(graphics, brush, region); stat = SOFTWARE_GdipFillRegion(graphics, brush, region);
if (stat == NotImplemented && graphics->image)
stat = GDI32_GdipFillRegion(graphics, brush, region);
if (stat == NotImplemented) if (stat == NotImplemented)
{ {
FIXME("not implemented for brushtype %i\n", brush->bt); FIXME("not implemented for brushtype %i\n", brush->bt);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment