vulkan: add hepler for vkGetPhysicalDeviceFeatures2

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21754>
This commit is contained in:
Constantine Shablya
2023-03-15 17:44:46 +02:00
committed by Marge Bot
parent efaf3fd5fc
commit c7300a6a3b
2 changed files with 169 additions and 5 deletions
+2 -2
View File
@@ -165,10 +165,10 @@ vk_dispatch_trampolines = custom_target(
vk_physical_device_features = custom_target(
'vk_physical_device_features',
input : [vk_physical_device_features_gen, vk_api_xml],
output : ['vk_physical_device_features.c'],
output : ['vk_physical_device_features.c', 'vk_physical_device_features.h'],
command : [
prog_python, '@INPUT0@', '--xml', '@INPUT1@',
'--out-c', '@OUTPUT0@'
'--out-c', '@OUTPUT0@', '--out-h', '@OUTPUT1@',
],
depend_files : vk_physical_device_features_gen_depend_files,
)