Skip to content
Snippets Groups Projects
Commit 5445c4c8 authored by Giovanni Mascellani's avatar Giovanni Mascellani Committed by Alexandre Julliard
Browse files

vkd3d: Handle D3D12_FEATURE_D3D12_OPTIONS15 in CheckFeatureSupport().

parent 761ee1e4
No related branches found
No related tags found
1 merge request!861vkd3d: Handle D3D12_FEATURE_D3D12_OPTIONS{14-18} in CheckFeatureSupport().
...@@ -2454,6 +2454,12 @@ typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS14 ...@@ -2454,6 +2454,12 @@ typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS14
BOOL IndependentFrontAndBackStencilRefMaskSupported; BOOL IndependentFrontAndBackStencilRefMaskSupported;
} D3D12_FEATURE_DATA_D3D12_OPTIONS14; } D3D12_FEATURE_DATA_D3D12_OPTIONS14;
typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS15
{
BOOL TriangleFanSupported;
BOOL DynamicIndexBufferStripCutSupported;
} D3D12_FEATURE_DATA_D3D12_OPTIONS15;
typedef enum D3D12_FEATURE typedef enum D3D12_FEATURE
{ {
D3D12_FEATURE_D3D12_OPTIONS = 0, D3D12_FEATURE_D3D12_OPTIONS = 0,
...@@ -2490,6 +2496,7 @@ typedef enum D3D12_FEATURE ...@@ -2490,6 +2496,7 @@ typedef enum D3D12_FEATURE
D3D12_FEATURE_D3D12_OPTIONS12 = 41, D3D12_FEATURE_D3D12_OPTIONS12 = 41,
D3D12_FEATURE_D3D12_OPTIONS13 = 42, D3D12_FEATURE_D3D12_OPTIONS13 = 42,
D3D12_FEATURE_D3D12_OPTIONS14 = 43, D3D12_FEATURE_D3D12_OPTIONS14 = 43,
D3D12_FEATURE_D3D12_OPTIONS15 = 44,
} D3D12_FEATURE; } D3D12_FEATURE;
typedef struct D3D12_MEMCPY_DEST typedef struct D3D12_MEMCPY_DEST
......
...@@ -3938,6 +3938,23 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CheckFeatureSupport(ID3D12Device9 ...@@ -3938,6 +3938,23 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CheckFeatureSupport(ID3D12Device9
return S_OK; return S_OK;
} }
case D3D12_FEATURE_D3D12_OPTIONS15:
{
D3D12_FEATURE_DATA_D3D12_OPTIONS15 *data = feature_data;
if (feature_data_size != sizeof(*data))
{
WARN("Invalid size %u.\n", feature_data_size);
}
data->TriangleFanSupported = FALSE;
data->DynamicIndexBufferStripCutSupported = FALSE;
TRACE("Triangle fan %#x.\n", data->TriangleFanSupported);
TRACE("Dynamic index buffer strip cut %#x.\n", data->DynamicIndexBufferStripCutSupported);
return S_OK;
}
default: default:
FIXME("Unhandled feature %#x.\n", feature); FIXME("Unhandled feature %#x.\n", feature);
return E_NOTIMPL; return E_NOTIMPL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment