The open source OpenXR runtime
0
fork

Configure Feed

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

a/vk: Expose vk_select_physical_device function

+14
+6
src/xrt/auxiliary/vk/vk_bundle_init.c
··· 944 944 * 945 945 */ 946 946 947 + VkResult 948 + vk_select_physical_device(struct vk_bundle *vk, int forced_index) 949 + { 950 + return select_physical_device(vk, forced_index); 951 + } 952 + 947 953 XRT_CHECK_RESULT VkResult 948 954 vk_create_device(struct vk_bundle *vk, 949 955 int forced_index,
+8
src/xrt/auxiliary/vk/vk_helpers.h
··· 618 618 void 619 619 vk_fill_in_has_instance_extensions(struct vk_bundle *vk, struct u_string_list *ext_list); 620 620 621 + /*! 622 + * Setup the physical device, this is called by vk_create_device but has uses 623 + * for outside of that. 624 + * 625 + * @ingroup aux_vk 626 + */ 627 + VkResult 628 + vk_select_physical_device(struct vk_bundle *vk, int forced_index); 621 629 622 630 /*! 623 631 * Used to enable device features as a argument @ref vk_create_device.