Commit 08cccb52 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

dxgi: Stub DXGIGetDebugInterface1().

parent 1965332d
......@@ -3,3 +3,4 @@
@ stdcall CreateDXGIFactory2(long ptr ptr)
@ stdcall DXGID3D10CreateDevice(ptr ptr ptr long ptr long ptr)
@ stdcall DXGID3D10RegisterLayers(ptr long)
@ stdcall DXGIGetDebugInterface1(long ptr ptr)
......@@ -248,3 +248,11 @@ HRESULT WINAPI DXGID3D10RegisterLayers(const struct dxgi_device_layer *layers, U
return S_OK;
}
HRESULT WINAPI DXGIGetDebugInterface1(UINT flags, REFIID iid, void **debug)
{
TRACE("flags %#x, iid %s, debug %p.\n", flags, debugstr_guid(iid), debug);
WARN("Returning E_NOINTERFACE.\n");
return E_NOINTERFACE;
}
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