=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: d3drm: Implement IDirect3DRMMeshBuilder3_GetNormalCount.

Alexandre Julliard julliard at winehq.org
Mon May 13 15:02:45 CDT 2013


Module: wine
Branch: master
Commit: edacd0772e6c57f637477def8d3bd6800b752991
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=edacd0772e6c57f637477def8d3bd6800b752991

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun May 12 23:53:40 2013 +0200

d3drm: Implement IDirect3DRMMeshBuilder3_GetNormalCount.

---

 dlls/d3drm/meshbuilder.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/d3drm/meshbuilder.c b/dlls/d3drm/meshbuilder.c
index 07dc3fd..549a5dd 100644
--- a/dlls/d3drm/meshbuilder.c
+++ b/dlls/d3drm/meshbuilder.c
@@ -2392,9 +2392,9 @@ static int WINAPI IDirect3DRMMeshBuilder3Impl_GetNormalCount(IDirect3DRMMeshBuil
 {
     IDirect3DRMMeshBuilderImpl *This = impl_from_IDirect3DRMMeshBuilder3(iface);
 
-    FIXME("(%p)->(): stub\n", This);
+    TRACE("(%p)->()\n", This);
 
-    return E_NOTIMPL;
+    return This->nb_normals;
 }
 
 static const struct IDirect3DRMMeshBuilder3Vtbl Direct3DRMMeshBuilder3_Vtbl =




More information about the wine-cvs mailing list