Commit a886b474 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus: Added GdipMultiplyTextureTransform.

parent eabb8d16
...@@ -929,6 +929,20 @@ GpStatus WINGDIPAPI GdipGetTextureWrapMode(GpTexture *brush, GpWrapMode *wrapmod ...@@ -929,6 +929,20 @@ GpStatus WINGDIPAPI GdipGetTextureWrapMode(GpTexture *brush, GpWrapMode *wrapmod
} }
/****************************************************************************** /******************************************************************************
* 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.@] * GdipResetTextureTransform [GDIPLUS.@]
*/ */
GpStatus WINGDIPAPI GdipResetTextureTransform(GpTexture* brush) GpStatus WINGDIPAPI GdipResetTextureTransform(GpTexture* brush)
......
...@@ -446,7 +446,7 @@ ...@@ -446,7 +446,7 @@
@ stdcall GdipMultiplyMatrix(ptr ptr long) @ stdcall GdipMultiplyMatrix(ptr ptr long)
@ stub GdipMultiplyPathGradientTransform @ stub GdipMultiplyPathGradientTransform
@ stub GdipMultiplyPenTransform @ stub GdipMultiplyPenTransform
@ stub GdipMultiplyTextureTransform @ stdcall GdipMultiplyTextureTransform(ptr ptr long)
@ stdcall GdipMultiplyWorldTransform(ptr ptr long) @ stdcall GdipMultiplyWorldTransform(ptr ptr long)
@ stdcall GdipNewInstalledFontCollection(ptr) @ stdcall GdipNewInstalledFontCollection(ptr)
@ stdcall GdipNewPrivateFontCollection(ptr) @ stdcall GdipNewPrivateFontCollection(ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment