[PATCH] vkd3d: Bump RootSignature version to 1.1.

Hans-Kristian Arntzen post at arntzen-software.no
Wed Oct 16 06:05:42 CDT 2019


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

Signed-off-by: Hans-Kristian Arntzen <post at arntzen-software.no>

---
 libs/vkd3d/device.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libs/vkd3d/device.c b/libs/vkd3d/device.c
index 691a23a..d248726 100644
--- a/libs/vkd3d/device.c
+++ b/libs/vkd3d/device.c
@@ -2720,8 +2720,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;
-- 
2.23.0




More information about the wine-devel mailing list