d3dx9_36: Add stub for D3DXCreateTeapot.

This commit is contained in:
Misha Koshelev 2010-09-23 16:22:15 -05:00 committed by Alexandre Julliard
parent 7cbcbf4577
commit 10af823fd5
2 changed files with 8 additions and 1 deletions

View file

@ -89,7 +89,7 @@
@ stub D3DXCreateSkinInfoFVF
@ stdcall D3DXCreateSphere(ptr float long long ptr ptr)
@ stdcall D3DXCreateSprite(ptr ptr)
@ stub D3DXCreateTeapot
@ stdcall D3DXCreateTeapot(ptr ptr ptr)
@ stub D3DXCreateTextA
@ stub D3DXCreateTextW
@ stdcall D3DXCreateTexture(ptr long long long long long long ptr)

View file

@ -1070,3 +1070,10 @@ HRESULT WINAPI D3DXCreateSphere(LPDIRECT3DDEVICE9 device, FLOAT radius, UINT sli
return E_NOTIMPL;
}
HRESULT WINAPI D3DXCreateTeapot(LPDIRECT3DDEVICE9 device, LPD3DXMESH *mesh, LPD3DXBUFFER* adjacency)
{
FIXME("(%p, %p, %p): stub\n", device, mesh, adjacency);
return E_NOTIMPL;
}