tests: Skip test_null_vbv() on WARP.

On WARP 0xffffffff is read instead of zero.
This commit is contained in:
Giovanni Mascellani 2023-10-13 13:48:08 +02:00 committed by Alexandre Julliard
parent 14c9be697f
commit d72e30f1d1
Notes: Alexandre Julliard 2023-10-16 23:00:18 +02:00
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/406

View File

@ -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))