Commit 5b6eada5 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

d3drm: Add stubbed implementation of IDirect3DRMMeshBuilder.

parent 137100f7
......@@ -9,7 +9,8 @@ IMPORTS = dxguid uuid kernel32
C_SRCS = \
d3drm.c \
d3drm_main.c \
math.c
math.c \
meshbuilder.c
RC_SRCS = version.rc
......
......@@ -134,9 +134,9 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateMeshBuilder(IDirect3DRM* iface, LPDI
{
IDirect3DRMImpl *This = (IDirect3DRMImpl *)iface;
FIXME("(%p/%p)->(%p): stub\n", iface, This, ppMeshBuilder);
TRACE("(%p/%p)->(%p)\n", iface, This, ppMeshBuilder);
return E_NOTIMPL;
return Direct3DRMMeshBuilder_create(ppMeshBuilder);
}
static HRESULT WINAPI IDirect3DRMImpl_CreateFace(IDirect3DRM* iface, LPDIRECT3DRMFACE * ppFace)
......
......@@ -27,5 +27,6 @@
#include "d3drm.h"
HRESULT Direct3DRM_create(LPDIRECT3DRM* ppDirect3DRM);
HRESULT Direct3DRMMeshBuilder_create(LPDIRECT3DRMMESHBUILDER* ppMeshBuilder);
#endif /* __D3DRM_PRIVATE_INCLUDED__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment