The open source OpenXR runtime
0
fork

Configure Feed

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

c/main: Name all fence objects

+7
+4
src/xrt/compositor/main/comp_renderer.c
··· 393 393 if (ret != VK_SUCCESS) { 394 394 COMP_ERROR(r->c, "vkCreateFence: %s", vk_result_string(ret)); 395 395 } 396 + 397 + char buf[] = "Comp Renderer X_XXXX_XXXX"; 398 + snprintf(buf, ARRAY_SIZE(buf), "Comp Renderer %u", i); 399 + VK_NAME_OBJECT(vk, FENCE, r->fences[i], buf); 396 400 } 397 401 } 398 402
+3
src/xrt/compositor/main/comp_target_swapchain.c
··· 448 448 return false; 449 449 } 450 450 451 + // Name for debugging. 452 + VK_NAME_OBJECT(vk, FENCE, vblank_event_fence, "Comp VBlank"); 453 + 451 454 // Not scoped to not effect timing. 452 455 COMP_TRACE_IDENT(vblank); 453 456