From cf548b4500c4aab477e940af06902da03c67482f Mon Sep 17 00:00:00 2001 From: Yiwei Zhang Date: Tue, 15 Jul 2025 22:53:16 -0700 Subject: [PATCH] venus/meson: amend api_version in the generated icd file Missed when we support 1.4...again Part-of: --- src/virtio/vulkan/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/virtio/vulkan/meson.build b/src/virtio/vulkan/meson.build index eab6105ba5f..df6e5b3f469 100644 --- a/src/virtio/vulkan/meson.build +++ b/src/virtio/vulkan/meson.build @@ -21,7 +21,7 @@ virtio_icd = custom_target( output : 'virtio_icd.@0@.json'.format(host_machine.cpu()), command : [ prog_python, '@INPUT0@', - '--api-version', '1.3', '--xml', '@INPUT1@', + '--api-version', '1.4', '--xml', '@INPUT1@', '--sizeof-pointer', sizeof_pointer, '--lib-path', join_paths(get_option('prefix'), get_option('libdir'), 'libvulkan_virtio.so'), @@ -40,7 +40,7 @@ _dev_icd = custom_target( output : _dev_icdname, command : [ prog_python, '@INPUT0@', - '--api-version', '1.3', '--xml', '@INPUT1@', + '--api-version', '1.4', '--xml', '@INPUT1@', '--sizeof-pointer', sizeof_pointer, '--lib-path', meson.current_build_dir() / 'libvulkan_virtio.so', '--out', '@OUTPUT@',