From edacd0772e6c57f637477def8d3bd6800b752991 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Sun, 12 May 2013 23:53:40 +0200 Subject: [PATCH] d3drm: Implement IDirect3DRMMeshBuilder3_GetNormalCount. --- dlls/d3drm/meshbuilder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/d3drm/meshbuilder.c b/dlls/d3drm/meshbuilder.c index 07dc3fd6ddb..549a5dd2ae3 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 = -- 2.11.4.GIT