gdiplus: Stub GdipWarpPath.
This commit is contained in:
parent
8d5c833d25
commit
0c71d5b3f7
|
@ -621,7 +621,7 @@
|
|||
@ stdcall GdipTranslateWorldTransform(ptr long long long)
|
||||
@ stdcall GdipVectorTransformMatrixPoints(ptr ptr long)
|
||||
@ stdcall GdipVectorTransformMatrixPointsI(ptr ptr long)
|
||||
@ stub GdipWarpPath
|
||||
@ stdcall GdipWarpPath(ptr ptr ptr long long long long long long long)
|
||||
@ stdcall GdipWidenPath(ptr ptr ptr long)
|
||||
@ stub GdipWindingModeOutline
|
||||
@ stdcall GdiplusNotificationHook(ptr)
|
||||
|
|
|
@ -1465,6 +1465,16 @@ GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix)
|
|||
path->pathdata.Count);
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipWarpPath(GpPath *path, GpMatrix* matrix,
|
||||
GDIPCONST GpPointF *points, INT count, REAL x, REAL y, REAL width,
|
||||
REAL height, WarpMode warpmode, REAL flatness)
|
||||
{
|
||||
FIXME("(%p,%p,%p,%i,%0.2f,%0.2f,%0.2f,%0.2f,%i,%0.2f)\n", path, matrix,
|
||||
points, count, x, y, width, height, warpmode, flatness);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipWidenPath(GpPath *path, GpPen *pen, GpMatrix *matrix,
|
||||
REAL flatness)
|
||||
{
|
||||
|
|
|
@ -181,6 +181,11 @@ enum ImageType
|
|||
ImageTypeMetafile
|
||||
};
|
||||
|
||||
enum WarpMode {
|
||||
WarpModePerspective,
|
||||
WarpModeBilinear
|
||||
};
|
||||
|
||||
enum WrapMode
|
||||
{
|
||||
WrapModeTile,
|
||||
|
@ -436,6 +441,7 @@ typedef enum DashStyle DashStyle;
|
|||
typedef enum MatrixOrder MatrixOrder;
|
||||
typedef enum ImageType ImageType;
|
||||
typedef enum ImageFlags ImageFlags;
|
||||
typedef enum WarpMode WarpMode;
|
||||
typedef enum WrapMode WrapMode;
|
||||
typedef enum MetafileType MetafileType;
|
||||
typedef enum LinearGradientMode LinearGradientMode;
|
||||
|
|
Loading…
Reference in New Issue