1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-13 19:29:14 +01:00

[dxvk] Add debug label for swap chain blitter

This commit is contained in:
Philip Rebohle 2025-01-08 16:25:38 +01:00 committed by Philip Rebohle
parent 50f9630250
commit 279c6f150a

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;