Commit 10af823f authored by Misha Koshelev's avatar Misha Koshelev Committed by Alexandre Julliard

d3dx9_36: Add stub for D3DXCreateTeapot.

parent 7cbcbf45
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
@ stub D3DXCreateSkinInfoFVF @ stub D3DXCreateSkinInfoFVF
@ stdcall D3DXCreateSphere(ptr float long long ptr ptr) @ stdcall D3DXCreateSphere(ptr float long long ptr ptr)
@ stdcall D3DXCreateSprite(ptr ptr) @ stdcall D3DXCreateSprite(ptr ptr)
@ stub D3DXCreateTeapot @ stdcall D3DXCreateTeapot(ptr ptr ptr)
@ stub D3DXCreateTextA @ stub D3DXCreateTextA
@ stub D3DXCreateTextW @ stub D3DXCreateTextW
@ stdcall D3DXCreateTexture(ptr long long long long long long ptr) @ stdcall D3DXCreateTexture(ptr long long long long long long ptr)
......
...@@ -1070,3 +1070,10 @@ HRESULT WINAPI D3DXCreateSphere(LPDIRECT3DDEVICE9 device, FLOAT radius, UINT sli ...@@ -1070,3 +1070,10 @@ HRESULT WINAPI D3DXCreateSphere(LPDIRECT3DDEVICE9 device, FLOAT radius, UINT sli
return E_NOTIMPL; return E_NOTIMPL;
} }
HRESULT WINAPI D3DXCreateTeapot(LPDIRECT3DDEVICE9 device, LPD3DXMESH *mesh, LPD3DXBUFFER* adjacency)
{
FIXME("(%p, %p, %p): stub\n", device, mesh, adjacency);
return E_NOTIMPL;
}
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