gdiplus: Stub GdipRotatePathGradientTransform.

oldstable
Vincent Povirk 2010-06-24 17:24:11 -05:00 committed by Alexandre Julliard
parent 1fdecda9da
commit b56f3c3b21
2 changed files with 14 additions and 1 deletions

View File

@ -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);

View File

@ -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)