d3d12: Return DXGI_ERROR_SDK_COMPONENT_MISSING from D3D12GetDebugInterface().

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Józef Kucia 2018-08-15 12:03:24 +02:00 committed by Alexandre Julliard
parent a608ef1f2d
commit 8f13509dcd
1 changed files with 3 additions and 2 deletions

View File

@ -39,9 +39,10 @@ WINE_DECLARE_DEBUG_CHANNEL(winediag);
HRESULT WINAPI D3D12GetDebugInterface(REFIID iid, void **debug)
{
FIXME("iid %s, debug %p stub!\n", debugstr_guid(iid), debug);
TRACE("iid %s, debug %p.\n", debugstr_guid(iid), debug);
return E_NOTIMPL;
WARN("Returning DXGI_ERROR_SDK_COMPONENT_MISSING.\n");
return DXGI_ERROR_SDK_COMPONENT_MISSING;
}
static HRESULT d3d12_signal_event(HANDLE event)