The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/vk: Store vulkan version in vk_bundle

Also adds code in c/util's Vulkan code to store it.

authored by

Christoph Haag and committed by
Jakob Bornecrantz
a188ef21 e7fff3e4

+3
+1
src/xrt/auxiliary/vk/vk_helpers.h
··· 50 50 enum u_logging_level log_level; 51 51 52 52 VkInstance instance; 53 + uint32_t version; 53 54 VkPhysicalDevice physical_device; 54 55 int physical_device_index; 55 56 VkDevice device;
+2
src/xrt/compositor/util/comp_vulkan.c
··· 194 194 return ret; 195 195 } 196 196 197 + vk->version = vk_args->required_instance_version; 198 + 197 199 u_string_list_destroy(&instance_ext_list); 198 200 199 201 ret = vk_get_instance_functions(vk);