gdiplus: Stub GdipFillRegion.
This commit is contained in:
parent
be4a226a11
commit
c89bd5b878
|
@ -230,7 +230,7 @@
|
|||
@ stdcall GdipFillRectangleI(ptr ptr long long long long)
|
||||
@ stdcall GdipFillRectangles(ptr ptr ptr long)
|
||||
@ stdcall GdipFillRectanglesI(ptr ptr ptr long)
|
||||
@ stub GdipFillRegion
|
||||
@ stdcall GdipFillRegion(ptr ptr ptr)
|
||||
@ stdcall GdipFindFirstImageItem(ptr ptr)
|
||||
@ stub GdipFindNextImageItem
|
||||
@ stub GdipFlattenPath
|
||||
|
|
|
@ -162,6 +162,17 @@ GpStatus WINGDIPAPI GdipDeleteRegion(GpRegion *region)
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
|
||||
GpRegion* region)
|
||||
{
|
||||
if (!(graphics && brush && region))
|
||||
return InvalidParameter;
|
||||
|
||||
FIXME("(%p, %p, %p): stub\n", graphics, brush, region);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetRegionBounds(GpRegion *region, GpGraphics *graphics, GpRectF *rect)
|
||||
{
|
||||
FIXME("(%p, %p, %p): stub\n", region, graphics, rect);
|
||||
|
|
Loading…
Reference in New Issue