mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
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>
This commit is contained in:
parent
a608ef1f2d
commit
8f13509dcd
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue