gdiplus: Stub for GdipRotateLineTransform.
This commit is contained in:
parent
f4c017eac1
commit
be7d21255c
|
@ -1331,3 +1331,17 @@ GpStatus WINGDIPAPI GdipGetLineRectI(GpLineGradient *brush, GpRect *rect)
|
|||
|
||||
return ret;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipRotateLineTransform(GpLineGradient* brush,
|
||||
REAL angle, GpMatrixOrder order)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!brush)
|
||||
return InvalidParameter;
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("(%p, %.2f, %d) stub\n", brush, angle, order);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
|
|
@ -485,7 +485,7 @@
|
|||
@ stdcall GdipResetWorldTransform(ptr)
|
||||
@ stdcall GdipRestoreGraphics(ptr long)
|
||||
@ stdcall GdipReversePath(ptr)
|
||||
@ stub GdipRotateLineTransform
|
||||
@ stdcall GdipRotateLineTransform(ptr long long)
|
||||
@ stdcall GdipRotateMatrix(ptr long long)
|
||||
@ stub GdipRotatePathGradientTransform
|
||||
@ stub GdipRotatePenTransform
|
||||
|
|
Loading…
Reference in New Issue