mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
d3dx9_36: Add stub for D3DXCreateTeapot.
This commit is contained in:
parent
7cbcbf4577
commit
10af823fd5
2 changed files with 8 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue