[dxvk] Add debug label for swap chain blitter

This commit is contained in:
Philip Rebohle 2025-01-08 16:25:38 +01:00
parent b9dc562fb5
commit 70f3e0315e

View file

@ -252,6 +252,11 @@ namespace dxvk {
VkColorSpaceKHR srcColorSpace,
VkRect2D srcRect,
VkBool32 enableBlending) {
if (unlikely(m_device->isDebugEnabled())) {
ctx.cmd->cmdInsertDebugUtilsLabel(DxvkCmdBuffer::ExecBuffer,
vk::makeLabel(0xdcc0f0, "Swapchain blit"));
}
VkExtent3D dstExtent = dstView->mipLevelExtent(0);
VkOffset2D coordA = dstRect.offset;