vkd3d: Bump RootSignature version to 1.1.

There appears to be a complete implementation of RS 1.1 already,
so enable this feature.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans-Kristian Arntzen 2019-10-16 13:05:42 +02:00 committed by Alexandre Julliard
parent 769dd2b68c
commit c002aee119

View File

@ -2512,8 +2512,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CheckFeatureSupport(ID3D12Device *
return E_INVALIDARG;
}
FIXME("Root signature version 1_1 not supported yet.\n");
data->HighestVersion = D3D_ROOT_SIGNATURE_VERSION_1_0;
data->HighestVersion = D3D_ROOT_SIGNATURE_VERSION_1_1;
TRACE("Root signature version %#x.\n", data->HighestVersion);
return S_OK;