gdiplus: Added GdipSetPathFillMode.
This commit is contained in:
parent
f686cfab2f
commit
68a3d94722
|
@ -526,7 +526,7 @@
|
|||
@ stub GdipSetMetafileDownLevelRasterizationLimit
|
||||
@ stub GdipSetPageScale
|
||||
@ stub GdipSetPageUnit
|
||||
@ stub GdipSetPathFillMode
|
||||
@ stdcall GdipSetPathFillMode(ptr long)
|
||||
@ stub GdipSetPathGradientBlend
|
||||
@ stub GdipSetPathGradientCenterColor
|
||||
@ stub GdipSetPathGradientCenterPoint
|
||||
|
|
|
@ -361,6 +361,16 @@ GpStatus WINGDIPAPI GdipResetPath(GpPath *path)
|
|||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPathFillMode(GpPath *path, GpFillMode fill)
|
||||
{
|
||||
if(!path)
|
||||
return InvalidParameter;
|
||||
|
||||
path->fill = fill;
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix)
|
||||
{
|
||||
if(!path)
|
||||
|
|
|
@ -65,6 +65,7 @@ GpStatus WINGDIPAPI GdipGetPathWorldBounds(GpPath*,GpRectF*,GDIPCONST GpMatrix*,
|
|||
GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*);
|
||||
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
|
||||
GpStatus WINGDIPAPI GdipResetPath(GpPath*);
|
||||
GpStatus WINGDIPAPI GdipSetPathFillMode(GpPath*,GpFillMode);
|
||||
GpStatus WINGDIPAPI GdipTransformPath(GpPath*,GpMatrix*);
|
||||
|
||||
GpStatus WINGDIPAPI GdipCreateMatrix2(REAL,REAL,REAL,REAL,REAL,REAL,GpMatrix**);
|
||||
|
|
Loading…
Reference in New Issue