mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d11] Adjust reported resource sharing caps
This commit is contained in:
parent
f521a342d0
commit
9420391dce
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue