vkd3d: Handle D3D12_FEATURE_D3D12_OPTIONS14 in CheckFeatureSupport().

This commit is contained in:
Giovanni Mascellani
2024-05-08 11:15:59 +02:00
committed by Alexandre Julliard
parent fb20639eb4
commit 761ee1e487
Notes: Alexandre Julliard 2024-05-13 22:57:23 +02:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/861
2 changed files with 27 additions and 0 deletions

View File

@@ -2447,6 +2447,13 @@ typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS13
BOOL AlphaBlendFactorSupported;
} D3D12_FEATURE_DATA_D3D12_OPTIONS13;
typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS14
{
BOOL AdvancedTextureOpsSupported;
BOOL WriteableMSAATexturesSupported;
BOOL IndependentFrontAndBackStencilRefMaskSupported;
} D3D12_FEATURE_DATA_D3D12_OPTIONS14;
typedef enum D3D12_FEATURE
{
D3D12_FEATURE_D3D12_OPTIONS = 0,
@@ -2482,6 +2489,7 @@ typedef enum D3D12_FEATURE
D3D12_FEATURE_D3D12_OPTIONS11 = 40,
D3D12_FEATURE_D3D12_OPTIONS12 = 41,
D3D12_FEATURE_D3D12_OPTIONS13 = 42,
D3D12_FEATURE_D3D12_OPTIONS14 = 43,
} D3D12_FEATURE;
typedef struct D3D12_MEMCPY_DEST