mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-14 04:29:15 +01:00
Merge branch 'master' of https://github.com/doitsujin/dxvk
This commit is contained in:
commit
9ede325c5b
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user