The open source OpenXR runtime
0
fork

Configure Feed

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

c/main: Also print format when debugging swapchain creation

+3 -1
+3 -1
src/xrt/compositor/main/comp_swapchain.c
··· 301 301 302 302 struct comp_swapchain *sc = alloc_and_set_funcs(c, num_images); 303 303 304 - COMP_DEBUG(c, "CREATE %p %dx%d", (void *)sc, info->width, info->height); 304 + COMP_DEBUG(c, "CREATE %p %dx%d %s", (void *)sc, // 305 + info->width, info->height, // 306 + vk_color_format_string(info->format)); 305 307 306 308 // Use the image helper to allocate the images. 307 309 ret = vk_ic_allocate(&c->vk, info, num_images, &sc->vkic);