From d3a4230acfb9658009bded1223e807805fd8fb7c Mon Sep 17 00:00:00 2001 From: Mikhail Paulyshka Date: Mon, 12 Mar 2018 23:29:06 +0300 Subject: [PATCH] [d3d11] D3D11Device::QueryInterface() suppress warning for d56e2a4c-5127-8437-658a-98c5bb789498 there is no public information about this interface --- src/d3d11/d3d11_device.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/d3d11/d3d11_device.cpp b/src/d3d11/d3d11_device.cpp index 699dee39..e9456cc7 100644 --- a/src/d3d11/d3d11_device.cpp +++ b/src/d3d11/d3d11_device.cpp @@ -67,6 +67,10 @@ namespace dxvk { if (riid == __uuidof(ID3D11Debug)) return E_NOINTERFACE; + + //d56e2a4c-5127-8437-658a-98c5bb789498, from GTA V, no occurrences in Google + if (riid == GUID{0xd56e2a4c,0x5127,0x8437,{0x65,0x8a,0x98,0xc5,0xbb,0x78,0x94,0x98}}) + return E_NOINTERFACE; Logger::warn("D3D11Device::QueryInterface: Unknown interface query"); Logger::warn(str::format(riid));