gdiplus: Stub GdipCreateTexture2.

This commit is contained in:
Adam Petaccia 2008-08-31 01:06:49 -04:00 committed by Alexandre Julliard
parent 406c5d3f4d
commit 29e1994722
2 changed files with 10 additions and 1 deletions

View File

@ -381,6 +381,15 @@ GpStatus WINGDIPAPI GdipCreateTexture(GpImage *image, GpWrapMode wrapmode,
return NotImplemented;
}
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,
x, y, width, height, texture);
return NotImplemented;
}
/* FIXME: imageattr ignored */
GpStatus WINGDIPAPI GdipCreateTextureIA(GpImage *image,
GDIPCONST GpImageAttributes *imageattr, REAL x, REAL y, REAL width,

View File

@ -131,7 +131,7 @@
@ stdcall GdipCreateSolidFill(long ptr)
@ stdcall GdipCreateStreamOnFile(ptr long ptr)
@ stdcall GdipCreateStringFormat(long long ptr)
@ stub GdipCreateTexture2
@ stdcall GdipCreateTexture2(ptr long long long long long ptr)
@ stub GdipCreateTexture2I
@ stdcall GdipCreateTexture(ptr long ptr)
@ stdcall GdipCreateTextureIA(ptr ptr long long long long ptr)