From fd35f6668accc1c6d259182604a93793e5876308 Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Sun, 8 May 2022 14:23:52 +0100 Subject: [PATCH] c/util: Print device info as well --- src/xrt/compositor/util/comp_vulkan.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xrt/compositor/util/comp_vulkan.c b/src/xrt/compositor/util/comp_vulkan.c index 885001813..c1f515bdb 100644 --- a/src/xrt/compositor/util/comp_vulkan.c +++ b/src/xrt/compositor/util/comp_vulkan.c @@ -270,6 +270,9 @@ create_device(struct vk_bundle *vk, const struct comp_vulkan_arguments *vk_args) return ret; } + // Print device information. + vk_print_opened_device_info(vk, U_LOGGING_INFO); + // Print features enabled. vk_print_features_info(vk, U_LOGGING_INFO);