gdiplus: Stub for GdipScalePenTransform.
This commit is contained in:
parent
62512971fe
commit
f4c017eac1
|
@ -499,7 +499,7 @@
|
|||
@ stub GdipScaleLineTransform
|
||||
@ stdcall GdipScaleMatrix(ptr long long long)
|
||||
@ stub GdipScalePathGradientTransform
|
||||
@ stub GdipScalePenTransform
|
||||
@ stdcall GdipScalePenTransform(ptr long long long)
|
||||
@ stdcall GdipScaleTextureTransform(ptr long long long)
|
||||
@ stdcall GdipScaleWorldTransform(ptr long long long)
|
||||
@ stdcall GdipSetAdjustableArrowCapFillState(ptr long)
|
||||
|
|
|
@ -398,6 +398,19 @@ GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen)
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrixOrder order)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!pen)
|
||||
return InvalidParameter;
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("(%p, %.2f, %.2f, %d) stub\n", pen, sx, sy, order);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush)
|
||||
{
|
||||
TRACE("(%p, %p)\n", pen, brush);
|
||||
|
|
Loading…
Reference in New Issue