gdiplus: Implement GdipCreateTexture2.

This commit is contained in:
Adam Petaccia 2008-08-31 01:07:02 -04:00 committed by Alexandre Julliard
parent 7b3e6d018a
commit b6afa7a743
1 changed files with 6 additions and 2 deletions

View File

@ -410,10 +410,14 @@ GpStatus WINGDIPAPI GdipCreateTexture(GpImage *image, GpWrapMode wrapmode,
GpStatus WINGDIPAPI GdipCreateTexture2(GpImage *image, GpWrapMode wrapmode,
REAL x, REAL y, REAL width, REAL height, GpTexture **texture)
{
FIXME("stub: %p %d %f %f %f %f %p\n", image, wrapmode,
GpImageAttributes attributes;
TRACE("%p %d %f %f %f %f %p\n", image, wrapmode,
x, y, width, height, texture);
return NotImplemented;
attributes.wrap = wrapmode;
return GdipCreateTextureIA(image, &attributes, x, y, width, height,
texture);
}
/* FIXME: imageattr ignored */