gdiplus: Implement GdipGetTextureImage.
This commit is contained in:
parent
70c9e4fb3d
commit
cf4ec6e840
@ -1189,6 +1189,19 @@ GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb)
|
|||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GdipGetTextureImage [GDIPLUS.@]
|
||||||
|
*/
|
||||||
|
GpStatus WINGDIPAPI GdipGetTextureImage(GpTexture *brush, GpImage **image)
|
||||||
|
{
|
||||||
|
TRACE("(%p, %p)\n", brush, image);
|
||||||
|
|
||||||
|
if(!brush || !image)
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
return GdipCloneImage(brush->image, image);
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* GdipGetTextureTransform [GDIPLUS.@]
|
* GdipGetTextureTransform [GDIPLUS.@]
|
||||||
*/
|
*/
|
||||||
|
@ -397,7 +397,7 @@
|
|||||||
@ stdcall GdipGetStringFormatTrimming(ptr ptr)
|
@ stdcall GdipGetStringFormatTrimming(ptr ptr)
|
||||||
@ stdcall GdipGetTextContrast(ptr ptr)
|
@ stdcall GdipGetTextContrast(ptr ptr)
|
||||||
@ stdcall GdipGetTextRenderingHint(ptr ptr)
|
@ stdcall GdipGetTextRenderingHint(ptr ptr)
|
||||||
@ stub GdipGetTextureImage
|
@ stdcall GdipGetTextureImage(ptr ptr)
|
||||||
@ stdcall GdipGetTextureTransform(ptr ptr)
|
@ stdcall GdipGetTextureTransform(ptr ptr)
|
||||||
@ stdcall GdipGetTextureWrapMode(ptr ptr)
|
@ stdcall GdipGetTextureWrapMode(ptr ptr)
|
||||||
@ stdcall GdipGetVisibleClipBounds(ptr ptr)
|
@ stdcall GdipGetVisibleClipBounds(ptr ptr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user