This commit is contained in:
Philip Rebohle 2018-03-05 01:07:58 +01:00
commit 9ede325c5b
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
2 changed files with 7 additions and 0 deletions

View File

@ -66,7 +66,11 @@ namespace dxvk {
COM_QUERY_IFACE(riid, ppvObject, ID3D11DeviceChild);
COM_QUERY_IFACE(riid, ppvObject, ID3D11DeviceContext);
if (riid == __uuidof(ID3DUserDefinedAnnotation))
return E_NOINTERFACE;
Logger::warn("D3D11DeviceContext::QueryInterface: Unknown interface query");
Logger::warn(str::format(riid));
return E_NOINTERFACE;
}

View File

@ -64,6 +64,9 @@ namespace dxvk {
if (riid == __uuidof(IDXGIPresentDevicePrivate))
return m_presentDevice->QueryInterface(riid, ppvObject);
if (riid == __uuidof(ID3D11Debug))
return E_NOINTERFACE;
Logger::warn("D3D11Device::QueryInterface: Unknown interface query");
Logger::warn(str::format(riid));