From 886ca8f00492b8c7b71929ceaf9e07f917086543 Mon Sep 17 00:00:00 2001 From: columbarius Date: Sun, 15 Oct 2023 19:36:57 +0200 Subject: [PATCH] build: increase required vulkan version We require VK_EXT_KHR_synchronization_2 to build, which seems to be added to libvulkan at 2.1.170 [1]. [1] https://github.com/KhronosGroup/Vulkan-Headers/commit/1d99b835ec3cd5a7fb2f2a2dd9a615ee2d1f0101 --- spa/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/meson.build b/spa/meson.build index 31c1c41b0..27cdd2113 100644 --- a/spa/meson.build +++ b/spa/meson.build @@ -89,7 +89,7 @@ if get_option('spa-plugins').allowed() summary({'JACK2': jack_dep.found()}, bool_yn: true, section: 'Backend') have_vulkan = false - vulkan_dep = dependency('vulkan', version : '>= 1.1.69', required: get_option('vulkan')) + vulkan_dep = dependency('vulkan', version : '>= 1.2.170', required: get_option('vulkan')) if vulkan_dep.found() have_vulkan = cc.has_header('vulkan/vulkan.h', dependencies : vulkan_dep) assert((not get_option('vulkan').enabled()) or have_vulkan, 'Vulkan headers are missing')