Module: wine Branch: master Commit: 29e1994722acbf1dadc087e57e324a8df576e155 URL: http://source.winehq.org/git/wine.git/?a=commit;h=29e1994722acbf1dadc087e57e...
Author: Adam Petaccia adam@tpetaccia.com Date: Sun Aug 31 01:06:49 2008 -0400
gdiplus: Stub GdipCreateTexture2.
---
dlls/gdiplus/brush.c | 9 +++++++++ dlls/gdiplus/gdiplus.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/brush.c b/dlls/gdiplus/brush.c index 575d43d..5749fd2 100644 --- a/dlls/gdiplus/brush.c +++ b/dlls/gdiplus/brush.c @@ -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, diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index 9879fc4..83c069b 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -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)