1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-27 22:54:16 +01:00

[dxgi] CheckInterfaceSupport; Log interface queries

This commit is contained in:
Philip Rebohle 2018-04-30 20:01:50 +02:00
parent 2626a26072
commit 46f2e4d864

View File

@ -52,7 +52,11 @@ namespace dxvk {
HRESULT STDMETHODCALLTYPE DxgiAdapter::CheckInterfaceSupport(
REFGUID InterfaceName,
LARGE_INTEGER* pUMDVersion) {
Logger::err("DXGI: CheckInterfaceSupport: No D3D10 support");
if (pUMDVersion != nullptr)
*pUMDVersion = LARGE_INTEGER();
Logger::err("DXGI: CheckInterfaceSupport: Unsupported interface");
Logger::err(str::format(InterfaceName));
return DXGI_ERROR_UNSUPPORTED;
}