nvk: Set ICD version to 1.3

This should complete the Vulkan 1.3 puzzle

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27319>
This commit is contained in:
Echo J
2024-01-27 16:58:13 +02:00
committed by Marge Bot
parent c467a87e06
commit 32babbc416

View File

@@ -126,7 +126,7 @@ nouveau_icd = custom_target(
output : 'nouveau_icd.@0@.json'.format(host_machine.cpu()), output : 'nouveau_icd.@0@.json'.format(host_machine.cpu()),
command : [ command : [
prog_python, '@INPUT0@', prog_python, '@INPUT0@',
'--api-version', '1.1', '--xml', '@INPUT1@', '--api-version', '1.3', '--xml', '@INPUT1@',
'--lib-path', join_paths(icd_lib_path, icd_file_name), '--lib-path', join_paths(icd_lib_path, icd_file_name),
'--out', '@OUTPUT@', '--out', '@OUTPUT@',
], ],
@@ -144,7 +144,7 @@ if meson.version().version_compare('>= 0.58')
output : _dev_icdname, output : _dev_icdname,
command : [ command : [
prog_python, '@INPUT0@', prog_python, '@INPUT0@',
'--api-version', '1.1', '--xml', '@INPUT1@', '--api-version', '1.3', '--xml', '@INPUT1@',
'--lib-path', meson.current_build_dir() / icd_file_name, '--lib-path', meson.current_build_dir() / icd_file_name,
'--out', '@OUTPUT@', '--out', '@OUTPUT@',
], ],