| # Copyright 2019 Google LLC |
| # SPDX-License-Identifier: MIT |
| # |
| # based in part on anv and radv which are: |
| # Copyright © 2017 Intel Corporation |
| |
| vn_entrypoints = custom_target( |
| 'vn_entrypoints', |
| input : [vk_entrypoints_gen, vk_api_xml], |
| output : ['vn_entrypoints.h', 'vn_entrypoints.c'], |
| command : [ |
| prog_python, '@INPUT0@', '--xml', '@INPUT1@', '--proto', '--weak', |
| '--out-h', '@OUTPUT0@', '--out-c', '@OUTPUT1@', '--prefix', 'vn', |
| '--beta', with_vulkan_beta.to_string() |
| ], |
| ) |
| |
| virtio_icd = custom_target( |
| 'virtio_icd', |
| input : [vk_icd_gen, vk_api_xml], |
| output : 'virtio_icd.@[email protected]'.format(host_machine.cpu()), |
| command : [ |
| prog_python, '@INPUT0@', |
| '--api-version', '1.3', '--xml', '@INPUT1@', |
| '--lib-path', join_paths(get_option('prefix'), get_option('libdir'), |
| 'libvulkan_virtio.so'), |
| '--out', '@OUTPUT@', |
| ], |
| build_by_default : true, |
| install_dir : with_vulkan_icd_dir, |
| install_tag : 'runtime', |
| install : true, |
| ) |
| |
| _dev_icdname = 'virtio_devenv_icd.@[email protected]'.format(host_machine.cpu()) |
| _dev_icd = custom_target( |
| 'virtio_devenv_icd', |
| input : [vk_icd_gen, vk_api_xml], |
| output : _dev_icdname, |
| command : [ |
| prog_python, '@INPUT0@', |
| '--api-version', '1.3', '--xml', '@INPUT1@', |
| '--lib-path', meson.current_build_dir() / 'libvulkan_virtio.so', |
| '--out', '@OUTPUT@', |
| ], |
| build_by_default : true, |
| ) |
| |
| devenv.append('VK_DRIVER_FILES', _dev_icd.full_path()) |
| # Deprecated: replaced by VK_DRIVER_FILES above |
| devenv.append('VK_ICD_FILENAMES', _dev_icd.full_path()) |
| |
| libvn_files = files( |
| 'vn_buffer.c', |
| 'vn_command_buffer.c', |
| 'vn_common.c', |
| 'vn_cs.c', |
| 'vn_descriptor_set.c', |
| 'vn_device.c', |
| 'vn_device_memory.c', |
| 'vn_feedback.c', |
| 'vn_icd.c', |
| 'vn_image.c', |
| 'vn_instance.c', |
| 'vn_physical_device.c', |
| 'vn_pipeline.c', |
| 'vn_query_pool.c', |
| 'vn_queue.c', |
| 'vn_render_pass.c', |
| 'vn_ring.c', |
| 'vn_renderer_internal.c', |
| 'vn_renderer_util.c', |
| 'vn_renderer_virtgpu.c', |
| 'vn_renderer_vtest.c', |
| ) |
| |
| vn_deps = [ |
| dep_libdrm, |
| dep_thread, |
| idep_mesautil, |
| idep_vulkan_util, |
| idep_vulkan_lite_runtime, |
| idep_vulkan_wsi, |
| idep_xmlconfig, |
| ] |
| |
| vn_flags = [ |
| no_override_init_args, |
| ] + cc.get_supported_arguments([ |
| '-Werror=switch', |
| ]) |
| |
| vn_libs = [] |
| |
| if with_platform_wayland or with_platform_x11 |
| libvn_files += files('vn_wsi.c') |
| vn_flags += '-DVN_USE_WSI_PLATFORM' |
| endif |
| |
| if with_platform_wayland |
| vn_deps += dep_wayland_client |
| endif |
| |
| if with_platform_x11 |
| vn_deps += dep_xcb_dri3 |
| endif |
| |
| if with_platform_android |
| libvn_files += files('vn_android.c') |
| vn_deps += [dep_android, idep_u_gralloc] |
| endif |
| |
| libvulkan_virtio = shared_library( |
| 'vulkan_virtio', |
| [libvn_files, vn_entrypoints, sha1_h], |
| include_directories : [ |
| inc_include, inc_src, inc_virtio, |
| ], |
| link_with : vn_libs, |
| dependencies : [vn_deps], |
| c_args : [vn_flags], |
| link_args : [vulkan_icd_link_args, ld_args_bsymbolic, ld_args_gc_sections], |
| link_depends : vulkan_icd_link_depends, |
| gnu_symbol_visibility : 'hidden', |
| install : true, |
| ) |