The open source OpenXR runtime
0
fork

Configure Feed

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

c/util: Improve debug printing when importing swapchain

+3 -1
+3 -1
src/xrt/compositor/util/comp_swapchain.c
··· 336 336 337 337 struct comp_swapchain *sc = alloc_and_set_funcs(vk, cscgc, images_count); 338 338 339 - VK_DEBUG(vk, "CREATE FROM NATIVE %p %dx%d", (void *)sc, info->width, info->height); 339 + VK_DEBUG(vk, "IMPORT %p %dx%d %s (%ld)", (void *)sc, // 340 + info->width, info->height, // 341 + vk_format_string(info->format), info->format); 340 342 341 343 // Use the image helper to get the images. 342 344 ret = vk_ic_from_natives(vk, info, native_images, images_count, &sc->vkic);