13 Oct
2023
13 Oct
'23
1:16 p.m.
From: Giovanni Mascellani <gmascellani(a)codeweavers.com> On WARP 0xffffffff is read instead of zero. --- tests/d3d12.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/d3d12.c b/tests/d3d12.c index e8f95b30..c58b6c28 100644 --- a/tests/d3d12.c +++ b/tests/d3d12.c @@ -19308,6 +19308,12 @@ static void test_null_vbv(void) }; static const float white[] = {1.0f, 1.0f, 1.0f, 1.0f}; + if (test_options.use_warp_device) + { + skip("Broken on WARP.\n"); + return; + } + memset(&desc, 0, sizeof(desc)); desc.no_root_signature = true; if (!init_test_context(&context, &desc)) -- GitLab https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/406