mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-11-21 16:46:41 -08:00
libs/vkd3d: Add D3D12GetDebugInterface() stub.
This commit is contained in:
parent
6bebee9a09
commit
4503e8b23a
@ -54,3 +54,10 @@ HRESULT WINAPI D3D12CreateDevice(IUnknown *adapter, D3D_FEATURE_LEVEL minimum_fe
|
|||||||
return return_interface((IUnknown *)&object->ID3D12Device_iface, &IID_ID3D12Device,
|
return return_interface((IUnknown *)&object->ID3D12Device_iface, &IID_ID3D12Device,
|
||||||
riid, device);
|
riid, device);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI D3D12GetDebugInterface(REFIID riid, void **debug)
|
||||||
|
{
|
||||||
|
FIXME("riid %s, debug %p stub!\n", debugstr_guid(riid), debug);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user