gdiplus: Added GdipMultiplyTextureTransform.
This commit is contained in:
parent
eabb8d169c
commit
a886b4743f
|
@ -928,6 +928,20 @@ GpStatus WINGDIPAPI GdipGetTextureWrapMode(GpTexture *brush, GpWrapMode *wrapmod
|
|||
return Ok;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* GdipMultiplyTextureTransform [GDIPLUS.@]
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipMultiplyTextureTransform(GpTexture* brush,
|
||||
GDIPCONST GpMatrix *matrix, GpMatrixOrder order)
|
||||
{
|
||||
TRACE("(%p, %p, %d)\n", brush, matrix, order);
|
||||
|
||||
if(!brush || !matrix)
|
||||
return InvalidParameter;
|
||||
|
||||
return GdipMultiplyMatrix(brush->transform, matrix, order);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* GdipResetTextureTransform [GDIPLUS.@]
|
||||
*/
|
||||
|
|
|
@ -446,7 +446,7 @@
|
|||
@ stdcall GdipMultiplyMatrix(ptr ptr long)
|
||||
@ stub GdipMultiplyPathGradientTransform
|
||||
@ stub GdipMultiplyPenTransform
|
||||
@ stub GdipMultiplyTextureTransform
|
||||
@ stdcall GdipMultiplyTextureTransform(ptr ptr long)
|
||||
@ stdcall GdipMultiplyWorldTransform(ptr ptr long)
|
||||
@ stdcall GdipNewInstalledFontCollection(ptr)
|
||||
@ stdcall GdipNewPrivateFontCollection(ptr)
|
||||
|
|
Loading…
Reference in New Issue