The open source OpenXR runtime
0
fork

Configure Feed

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

Fix trailing space in xrGetVulkanDeviceExtensionsKHR

Also tweak the instance extensions definition for consistency.

+15 -15
+15 -15
src/xrt/compositor/client/comp_vk_glue.c
··· 13 13 14 14 15 15 const char *xrt_gfx_vk_instance_extensions = 16 - "VK_KHR_external_fence_capabilities " 17 - "VK_KHR_external_memory_capabilities " 18 - "VK_KHR_external_semaphore_capabilities " 19 - "VK_KHR_get_physical_device_properties2 " 20 - "VK_KHR_surface"; 16 + "VK_KHR_external_fence_capabilities" 17 + " VK_KHR_external_memory_capabilities" 18 + " VK_KHR_external_semaphore_capabilities" 19 + " VK_KHR_get_physical_device_properties2" 20 + " VK_KHR_surface"; 21 21 22 22 const char *xrt_gfx_vk_device_extensions = 23 - "VK_KHR_dedicated_allocation " 24 - "VK_KHR_external_fence " 25 - "VK_KHR_external_fence_fd " 26 - "VK_KHR_external_memory " 27 - "VK_KHR_external_memory_fd " 28 - "VK_KHR_external_semaphore " 29 - "VK_KHR_external_semaphore_fd " 30 - "VK_KHR_get_memory_requirements2 " 31 - "VK_KHR_swapchain " 23 + "VK_KHR_dedicated_allocation" 24 + " VK_KHR_external_fence" 25 + " VK_KHR_external_fence_fd" 26 + " VK_KHR_external_memory" 27 + " VK_KHR_external_memory_fd" 28 + " VK_KHR_external_semaphore" 29 + " VK_KHR_external_semaphore_fd" 30 + " VK_KHR_get_memory_requirements2" 31 + " VK_KHR_swapchain" 32 32 #if defined(XRT_GRAPHICS_BUFFER_HANDLE_IS_AHARDWAREBUFFER) 33 - "VK_ANDROID_external_memory_android_hardware_buffer " 33 + " VK_ANDROID_external_memory_android_hardware_buffer" 34 34 #endif 35 35 ; 36 36