Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/vkd3d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Eikum <aeikum@codeweavers.com>2019-10-31 22:53:47 +0300
committerAndrew Eikum <aeikum@codeweavers.com>2019-11-04 17:04:36 +0300
commit91b7be72c548c87ef86c3aff58cfe6a5bbaf4ea0 (patch)
tree23f07e85fcf7c9923494c7860563273493ccdaee
parenta4d13f12c5d976e1659ba87c8b24ae9a76ff4a98 (diff)
Revert "vkd3d: Bump RootSignature version to 1.1."HEADproton_4.11-next
This reverts commit c002aee119b638d30eeb7cdc91099449ccafeafc. This commit caused a bunch of problems which are still being worked out upstream.
-rw-r--r--libs/vkd3d/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/vkd3d/device.c b/libs/vkd3d/device.c
index 13ebc70a..22df700e 100644
--- a/libs/vkd3d/device.c
+++ b/libs/vkd3d/device.c
@@ -2666,7 +2666,7 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CheckFeatureSupport(ID3D12Device *
}
TRACE("Root signature requested %#x.\n", data->HighestVersion);
- data->HighestVersion = min(data->HighestVersion, D3D_ROOT_SIGNATURE_VERSION_1_1);
+ data->HighestVersion = min(data->HighestVersion, D3D_ROOT_SIGNATURE_VERSION_1_0);
TRACE("Root signature version %#x.\n", data->HighestVersion);
return S_OK;