mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-12-15 08:03:30 -08:00
ci: Run Linux tests on Debian trixie.
So we have a more recent version of SPIRV-Tools and also don't have to recompile Mesa to test llvmpipe. This fixes a few failing tests, but also breaks a couple.
This commit is contained in:
committed by
Henri Verbeet
parent
3f1de27283
commit
3c8b4ce731
Notes:
Henri Verbeet
2025-10-03 00:55:50 +02:00
Approved-by: Henri Verbeet (@hverbeet) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/1764
@@ -1789,10 +1789,18 @@ static bool init_vulkan_runner(struct vulkan_shader_runner *runner)
|
||||
{
|
||||
if (device_info.driver_properties.driverID == VK_DRIVER_ID_MESA_LLVMPIPE)
|
||||
runner->caps.tags[runner->caps.tag_count++] = "llvmpipe";
|
||||
if (is_mesa_vulkan_driver(&device_info.driver_properties)
|
||||
&& !is_vulkan_driver_version_ge(&device_info.properties2.properties,
|
||||
&device_info.driver_properties, 23, 3, 0))
|
||||
runner->caps.tags[runner->caps.tag_count++] = "mesa<23.3";
|
||||
if (is_mesa_vulkan_driver(&device_info.driver_properties))
|
||||
{
|
||||
if (!is_vulkan_driver_version_ge(&device_info.properties2.properties,
|
||||
&device_info.driver_properties, 23, 3, 0))
|
||||
runner->caps.tags[runner->caps.tag_count++] = "mesa<23.3";
|
||||
if (!is_vulkan_driver_version_ge(&device_info.properties2.properties,
|
||||
&device_info.driver_properties, 25, 1, 0))
|
||||
runner->caps.tags[runner->caps.tag_count++] = "mesa<25.1";
|
||||
if (compare_version_string_ge(device_info.properties2.properties.deviceName,
|
||||
"LLVM ", 16, 0 ,0))
|
||||
runner->caps.tags[runner->caps.tag_count++] = "llvm>=16";
|
||||
}
|
||||
}
|
||||
|
||||
runner->caps.shader_caps[SHADER_CAP_CLIP_PLANES] = true;
|
||||
|
||||
Reference in New Issue
Block a user