gdiplus: Stub GdipRotatePathGradientTransform.
This commit is contained in:
parent
1fdecda9da
commit
b56f3c3b21
|
@ -1627,6 +1627,19 @@ GpStatus WINGDIPAPI GdipMultiplyPathGradientTransform(GpPathGradient *grad,
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipRotatePathGradientTransform(GpPathGradient *grad,
|
||||
REAL angle, GpMatrixOrder order)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
TRACE("(%p,%0.2f,%i)\n", grad, angle, order);
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetSolidFillColor(GpSolidFill *sf, ARGB argb)
|
||||
{
|
||||
TRACE("(%p, %x)\n", sf, argb);
|
||||
|
|
|
@ -487,7 +487,7 @@
|
|||
@ stdcall GdipReversePath(ptr)
|
||||
@ stdcall GdipRotateLineTransform(ptr long long)
|
||||
@ stdcall GdipRotateMatrix(ptr long long)
|
||||
@ stub GdipRotatePathGradientTransform
|
||||
@ stdcall GdipRotatePathGradientTransform(ptr long long)
|
||||
@ stdcall GdipRotatePenTransform(ptr long long)
|
||||
@ stdcall GdipRotateTextureTransform(ptr long long)
|
||||
@ stdcall GdipRotateWorldTransform(ptr long long)
|
||||
|
|
Loading…
Reference in New Issue