1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-15 07:29:17 +01:00

[d3d11] Adjust reported resource sharing caps

This commit is contained in:
Philip Rebohle 2022-08-26 04:56:40 +02:00
parent f521a342d0
commit 9420391dce

View File

@ -1588,7 +1588,7 @@ namespace dxvk {
info->MultisampleRTVWithForcedSampleCountOne = TRUE; /* not really */ info->MultisampleRTVWithForcedSampleCountOne = TRUE; /* not really */
info->SAD4ShaderInstructions = TRUE; info->SAD4ShaderInstructions = TRUE;
info->ExtendedDoublesShaderInstructions = TRUE; info->ExtendedDoublesShaderInstructions = TRUE;
info->ExtendedResourceSharing = TRUE; /* not really */ info->ExtendedResourceSharing = TRUE;
} return S_OK; } return S_OK;
case D3D11_FEATURE_ARCHITECTURE_INFO: { case D3D11_FEATURE_ARCHITECTURE_INFO: {
@ -1726,7 +1726,7 @@ namespace dxvk {
if (FeatureSupportDataSize != sizeof(*info)) if (FeatureSupportDataSize != sizeof(*info))
return E_INVALIDARG; return E_INVALIDARG;
info->ExtendedNV12SharedTextureSupported = FALSE; info->ExtendedNV12SharedTextureSupported = TRUE;
} return S_OK; } return S_OK;
default: default: