Commit f7fc4e16 authored by Adam Petaccia's avatar Adam Petaccia Committed by Alexandre Julliard

gdiplus: Implement GdipCreateTexture2I.

parent b6afa7a7
......@@ -544,9 +544,14 @@ GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage *image, GDIPCONST GpImageAttrib
GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode,
INT x, INT y, INT width, INT height, GpTexture **texture)
{
FIXME("stub: %p %d %d %d %d %d %p", image, wrapmode, x, y, width, height, texture);
GpImageAttributes imageattr;
return NotImplemented;
TRACE("%p %d %d %d %d %d %p", image, wrapmode, x, y, width, height,
texture);
imageattr.wrap = wrapmode;
return GdipCreateTextureIA(image, &imageattr, x, y, width, height, texture);
}
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush *brush, GpBrushType *type)
......
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