From 9420391dce5cfa7a7cc2034ff502b3d45d6bfbc9 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 26 Aug 2022 04:56:40 +0200 Subject: [PATCH] [d3d11] Adjust reported resource sharing caps --- src/d3d11/d3d11_device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d3d11/d3d11_device.cpp b/src/d3d11/d3d11_device.cpp index 4afe91116..773086f78 100644 --- a/src/d3d11/d3d11_device.cpp +++ b/src/d3d11/d3d11_device.cpp @@ -1588,7 +1588,7 @@ namespace dxvk { info->MultisampleRTVWithForcedSampleCountOne = TRUE; /* not really */ info->SAD4ShaderInstructions = TRUE; info->ExtendedDoublesShaderInstructions = TRUE; - info->ExtendedResourceSharing = TRUE; /* not really */ + info->ExtendedResourceSharing = TRUE; } return S_OK; case D3D11_FEATURE_ARCHITECTURE_INFO: { @@ -1726,7 +1726,7 @@ namespace dxvk { if (FeatureSupportDataSize != sizeof(*info)) return E_INVALIDARG; - info->ExtendedNV12SharedTextureSupported = FALSE; + info->ExtendedNV12SharedTextureSupported = TRUE; } return S_OK; default: