gdiplus: Stub GdipScaleLineTransform.
This commit is contained in:
parent
cded6c8b79
commit
969da83ea7
|
@ -1603,6 +1603,17 @@ GpStatus WINGDIPAPI GdipSetLineTransform(GpLineGradient *brush,
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipScaleLineTransform(GpLineGradient *brush, REAL sx, REAL sy,
|
||||
GpMatrixOrder order)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipTranslateLineTransform(GpLineGradient* brush,
|
||||
REAL dx, REAL dy, GpMatrixOrder order)
|
||||
{
|
||||
|
|
|
@ -496,7 +496,7 @@
|
|||
@ stdcall GdipSaveGraphics(ptr ptr)
|
||||
@ stdcall GdipSaveImageToFile(ptr ptr ptr ptr)
|
||||
@ stdcall GdipSaveImageToStream(ptr ptr ptr ptr)
|
||||
@ stub GdipScaleLineTransform
|
||||
@ stdcall GdipScaleLineTransform(ptr long long long)
|
||||
@ stdcall GdipScaleMatrix(ptr long long long)
|
||||
@ stub GdipScalePathGradientTransform
|
||||
@ stdcall GdipScalePenTransform(ptr long long long)
|
||||
|
|
Loading…
Reference in New Issue