tests: Mark cull distance as buggy on MoltenVK.

The generated MSL code is not accepted by the Metal runtime, and
it looks wrong anyway.
This commit is contained in:
Giovanni Mascellani 2023-12-27 11:55:12 +01:00 committed by Alexandre Julliard
parent 60e0246436
commit 9a83e568b4
Notes: Alexandre Julliard 2024-01-24 22:55:37 +01:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/545

View File

@ -31973,6 +31973,13 @@ static void test_combined_clip_and_cull_distances(void)
command_list = context.list;
queue = context.queue;
if (is_mvk_device(device))
{
skip("Cull distance not supported on MoltenVK.\n");
destroy_test_context(&context);
return;
}
input_layout.pInputElementDescs = layout_desc;
input_layout.NumElements = ARRAY_SIZE(layout_desc);