meson_options.txt: disable vulkan option since it's not ready for use

According to George Kiagiadakis it being set to auto is an accident,
because the Vulkan support does not [yet] provide anything useful.
This commit is contained in:
Niklāvs Koļesņikovs 2021-06-25 14:22:47 +03:00
parent 0a02396995
commit 38d5de789d
No known key found for this signature in database
GPG Key ID: 8A45FF71F7C7210A
2 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ option('volume',
option('vulkan',
description: 'Enable vulkan spa plugin integration',
type: 'feature',
value: 'auto')
value: 'disabled')
option('pw-cat',
description: 'Build pw-cat/pw-play/pw-record',
type: 'feature',

View File

@ -38,7 +38,7 @@ if not get_option('spa-plugins').disabled()
summary({'JACK2': jack_dep.found()}, bool_yn: true, section: 'Backend')
vulkan_dep = dependency('vulkan', disabler : true, version : '>= 1.1.69', required: get_option('vulkan'))
vulkan_headers = cc.has_header('vulkan/vulkan.h', dependencies : vulkan_dep)
summary({'Vulkan': vulkan_headers}, bool_yn: true, section: 'Misc dependencies')
#summary({'Vulkan': vulkan_headers}, bool_yn: true, section: 'Misc dependencies')
libcamera_dep = dependency('camera', required: get_option('libcamera'))
summary({'libcamera': libcamera_dep.found()}, bool_yn: true, section: 'Camera portal')