Commit 8f13509d authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

d3d12: Return DXGI_ERROR_SDK_COMPONENT_MISSING from D3D12GetDebugInterface().

parent a608ef1f
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment