libs/vkd3d: Add D3D12GetDebugInterface() stub.

This commit is contained in:
Józef Kucia 2016-09-21 13:16:55 +02:00
parent 6bebee9a09
commit 4503e8b23a
1 changed files with 7 additions and 0 deletions

View File

@ -54,3 +54,10 @@ HRESULT WINAPI D3D12CreateDevice(IUnknown *adapter, D3D_FEATURE_LEVEL minimum_fe
return return_interface((IUnknown *)&object->ID3D12Device_iface, &IID_ID3D12Device,
riid, device);
}
HRESULT WINAPI D3D12GetDebugInterface(REFIID riid, void **debug)
{
FIXME("riid %s, debug %p stub!\n", debugstr_guid(riid), debug);
return E_NOTIMPL;
}