13 Oct
2023
13 Oct
'23
1:16 p.m.
From: Giovanni Mascellani <gmascellani(a)codeweavers.com> Pipeline creation fails with E_INVALIDARG, atomics are likely not supported on WARP. --- tests/d3d12.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/d3d12.c b/tests/d3d12.c index 02c36c43..c2a6ca92 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -23325,6 +23325,12 @@ static void test_atomic_instructions(void) {{~0u, ~0u}, { 0}, {0xffff, ~0u, 0}, {0xffff, 0, ~0u}}, }; + if (test_options.use_warp_device) + { + skip("Broken on WARP.\n"); + return; + } + memset(&desc, 0, sizeof(desc)); desc.rt_width = 1; desc.rt_height = 1; -- GitLab https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/406