d3dx10: Add D3DX10UnsetAllDeviceObjects stub.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alistair Leslie-Hughes 2016-04-01 17:44:54 +11:00 committed by Alexandre Julliard
parent 54a6db3d9b
commit e2da1a4ee1
3 changed files with 10 additions and 1 deletions

View File

@ -64,7 +64,7 @@
@ stub D3DX10SaveTextureToFileA(ptr ptr str)
@ stub D3DX10SaveTextureToFileW(ptr ptr wstr)
@ stub D3DX10SaveTextureToMemory(ptr ptr ptr long)
@ stub D3DX10UnsetAllDeviceObjects(ptr)
@ stdcall D3DX10UnsetAllDeviceObjects(ptr)
@ stdcall D3DXBoxBoundProbe(ptr ptr ptr ptr) d3dx9_36.D3DXBoxBoundProbe
@ stdcall D3DXColorAdjustContrast(ptr ptr float) d3dx9_36.D3DXColorAdjustContrast
@ stdcall D3DXColorAdjustSaturation(ptr ptr float) d3dx9_36.D3DXColorAdjustSaturation

View File

@ -116,3 +116,10 @@ HRESULT WINAPI D3DX10CreateEffectPoolFromMemory(const void *data, SIZE_T datasiz
return E_NOTIMPL;
}
HRESULT WINAPI D3DX10UnsetAllDeviceObjects(ID3D10Device *device)
{
FIXME("device %p stub.\n", device);
return E_NOTIMPL;
}

View File

@ -64,3 +64,5 @@ interface ID3DX10ThreadPump : IUnknown
HRESULT PurgeAllItems();
HRESULT GetQueueStatus([in] UINT *queue, [in] UINT *processqueue, [in] UINT *devicequeue);
};
cpp_quote("HRESULT WINAPI D3DX10UnsetAllDeviceObjects(ID3D10Device *device);")