gdiplus: Added GdipRotateTextureTransform.
This commit is contained in:
parent
2d1a9eb307
commit
eabb8d169c
|
@ -1198,6 +1198,20 @@ GpStatus WINGDIPAPI GdipGetLineColors(GpLineGradient *brush, ARGB *colors)
|
|||
return Ok;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* GdipRotateTextureTransform [GDIPLUS.@]
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipRotateTextureTransform(GpTexture* brush, REAL angle,
|
||||
GpMatrixOrder order)
|
||||
{
|
||||
TRACE("(%p, %.2f, %d)\n", brush, angle, order);
|
||||
|
||||
if(!brush)
|
||||
return InvalidParameter;
|
||||
|
||||
return GdipRotateMatrix(brush->transform, angle, order);
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetLineLinearBlend(GpLineGradient *brush, REAL focus,
|
||||
REAL scale)
|
||||
{
|
||||
|
|
|
@ -489,7 +489,7 @@
|
|||
@ stdcall GdipRotateMatrix(ptr long long)
|
||||
@ stub GdipRotatePathGradientTransform
|
||||
@ stub GdipRotatePenTransform
|
||||
@ stub GdipRotateTextureTransform
|
||||
@ stdcall GdipRotateTextureTransform(ptr long long)
|
||||
@ stdcall GdipRotateWorldTransform(ptr long long)
|
||||
@ stub GdipSaveAdd
|
||||
@ stub GdipSaveAddImage
|
||||
|
|
Loading…
Reference in New Issue