gdiplus: Stub GdipScalePathGradientTransform.
This commit is contained in:
parent
b56f3c3b21
commit
462c599335
|
@ -1640,6 +1640,19 @@ GpStatus WINGDIPAPI GdipRotatePathGradientTransform(GpPathGradient *grad,
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipScalePathGradientTransform(GpPathGradient *grad,
|
||||
REAL sx, REAL sy, GpMatrixOrder order)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
TRACE("(%p,%0.2f,%0.2f,%i)\n", grad, sx, sy, order);
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
|
||||
{
|
||||
TRACE("(%p, %x)\n", sf, argb);
|
||||
|
|
|
@ -498,7 +498,7 @@
|
|||
@ stdcall GdipSaveImageToStream(ptr ptr ptr ptr)
|
||||
@ stdcall GdipScaleLineTransform(ptr long long long)
|
||||
@ stdcall GdipScaleMatrix(ptr long long long)
|
||||
@ stub GdipScalePathGradientTransform
|
||||
@ stdcall GdipScalePathGradientTransform(ptr long long long)
|
||||
@ stdcall GdipScalePenTransform(ptr long long long)
|
||||
@ stdcall GdipScaleTextureTransform(ptr long long long)
|
||||
@ stdcall GdipScaleWorldTransform(ptr long long long)
|
||||
|
|
Loading…
Reference in New Issue