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

vkd3d: Handle D3D12_FEATURE_D3D12_OPTIONS18 in CheckFeatureSupport().

parent 7c750371
No related branches found
No related tags found
1 merge request!861vkd3d: Handle D3D12_FEATURE_D3D12_OPTIONS{14-18} in CheckFeatureSupport().
Pipeline #26336 skipped
......@@ -2472,6 +2472,11 @@ typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS17
BOOL ManualWriteTrackingResourceSupported;
} D3D12_FEATURE_DATA_D3D12_OPTIONS17;
typedef struct D3D12_FEATURE_DATA_D3D12_OPTIONS18
{
BOOL RenderPassesValid;
} D3D12_FEATURE_DATA_D3D12_OPTIONS18;
typedef enum D3D12_FEATURE
{
D3D12_FEATURE_D3D12_OPTIONS = 0,
......@@ -2511,6 +2516,7 @@ typedef enum D3D12_FEATURE
D3D12_FEATURE_D3D12_OPTIONS15 = 44,
D3D12_FEATURE_D3D12_OPTIONS16 = 45,
D3D12_FEATURE_D3D12_OPTIONS17 = 46,
D3D12_FEATURE_D3D12_OPTIONS18 = 47,
} D3D12_FEATURE;
typedef struct D3D12_MEMCPY_DEST
......
......@@ -3989,6 +3989,21 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CheckFeatureSupport(ID3D12Device9
return S_OK;
}
case D3D12_FEATURE_D3D12_OPTIONS18:
{
D3D12_FEATURE_DATA_D3D12_OPTIONS18 *data = feature_data;
if (feature_data_size != sizeof(*data))
{
WARN("Invalid size %u.\n", feature_data_size);
}
data->RenderPassesValid = FALSE;
TRACE("Render passes valid %#x.\n", data->RenderPassesValid);
return S_OK;
}
default:
FIXME("Unhandled feature %#x.\n", feature);
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