gdiplus: Added GdipMultiplyTextureTransform.

This commit is contained in:
Nikolay Sivov 2008-12-03 00:49:19 +03:00 committed by Alexandre Julliard
parent eabb8d169c
commit a886b4743f
2 changed files with 15 additions and 1 deletions

View File

@ -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.@]
*/

View File

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