mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-22 06:26:30 +00:00
Forward QueryInterface call for ID3D11InfoQueue from context to device
This commit is contained in:
@@ -1639,6 +1639,11 @@ HRESULT STDMETHODCALLTYPE WrappedID3D11DeviceContext::QueryInterface(REFIID riid
|
||||
m_UserAnnotation.AddRef();
|
||||
return S_OK;
|
||||
}
|
||||
else if(riid == __uuidof(ID3D11InfoQueue))
|
||||
{
|
||||
// forward to device
|
||||
return m_pDevice->QueryInterface(riid, ppvObject);
|
||||
}
|
||||
else
|
||||
{
|
||||
string guid = ToStr::Get(riid);
|
||||
|
||||
Reference in New Issue
Block a user