From 29e1994722acbf1dadc087e57e324a8df576e155 Mon Sep 17 00:00:00 2001 From: Adam Petaccia Date: Sun, 31 Aug 2008 01:06:49 -0400 Subject: [PATCH] gdiplus: Stub GdipCreateTexture2. --- dlls/gdiplus/brush.c | 9 +++++++++ dlls/gdiplus/gdiplus.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dlls/gdiplus/brush.c b/dlls/gdiplus/brush.c index 575d43d36aa..5749fd26084 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 9879fc4ecf7..83c069b36cb 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) -- 2.11.4.GIT