The open source OpenXR runtime
0
fork

Configure Feed

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

st/oxr: Use extension-decorated name for Vulkan functions

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2233>

authored by

Rylie Pavlik and committed by
Marge Bot
58369ec1 9bd2f7c2

+2 -2
+2 -2
src/xrt/state_trackers/oxr/oxr_vulkan.c
··· 564 564 VkPhysicalDevice *vkPhysicalDevice) 565 565 { 566 566 GET_PROC(vkEnumeratePhysicalDevices); 567 - GET_PROC(vkGetPhysicalDeviceProperties2); 567 + GET_PROC(vkGetPhysicalDeviceProperties2KHR); 568 568 VkResult vk_ret; 569 569 uint32_t count; 570 570 ··· 610 610 .pNext = &pdidp, 611 611 }; 612 612 613 - vkGetPhysicalDeviceProperties2(phys[i], &pdp2); 613 + vkGetPhysicalDeviceProperties2KHR(phys[i], &pdp2); 614 614 615 615 // These should always be true 616 616 static_assert(VK_UUID_SIZE == XRT_UUID_SIZE, "uuid sizes mismatch");