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

[d3d11] Fix interface query for ID3D11Predicate

This commit is contained in:
Philip Rebohle 2018-08-16 00:13:40 +02:00
parent 2a96d717d3
commit c3c7a4172d
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -67,7 +67,7 @@ namespace dxvk {
}
if (m_desc.Query == D3D11_QUERY_OCCLUSION_PREDICATE) {
if (riid == __uuidof(ID3D10Predicate)) {
if (riid == __uuidof(ID3D11Predicate)) {
*ppvObject = ref(this);
return S_OK;
}