From a2fc3213f8965b0a9b739eabcf8671c3df14ad5e Mon Sep 17 00:00:00 2001 From: Lina Versace Date: Wed, 14 Jun 2023 11:31:43 -0700 Subject: [PATCH] venus: Advertise 1.3 in ICD file It was still advertising 1.2. Signed-off-by: Lina Versace Reviewed-by: Yiwei Zhang 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 ce97d0b..11c2455 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.2', '--xml', '@INPUT1@', + '--api-version', '1.3', '--xml', '@INPUT1@', '--lib-path', join_paths(get_option('prefix'), get_option('libdir'), 'libvulkan_virtio.so'), '--out', '@OUTPUT@', @@ -38,7 +38,7 @@ _dev_icd = custom_target( output : _dev_icdname, command : [ prog_python, '@INPUT0@', - '--api-version', '1.2', '--xml', '@INPUT1@', + '--api-version', '1.3', '--xml', '@INPUT1@', '--lib-path', meson.current_build_dir() / 'libvulkan_virtio.so', '--out', '@OUTPUT@', ], -- 2.7.4