From 5b68884fd9f6031db6c30f180786dbb6f4873ffc Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sat, 1 Mar 2025 16:37:13 +0100 Subject: [PATCH] [d3d11] Fix confusing debug color for GPU synchronization Purple was already used for various other things. --- src/d3d11/d3d11_context_imm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d3d11/d3d11_context_imm.cpp b/src/d3d11/d3d11_context_imm.cpp index 64f7fa342..5e5cb2296 100644 --- a/src/d3d11/d3d11_context_imm.cpp +++ b/src/d3d11/d3d11_context_imm.cpp @@ -1142,7 +1142,7 @@ namespace dxvk { cStagingMemory = GetStagingMemoryStatistics().allocatedTotal, cFlushReason = std::exchange(m_flushReason, std::string()) ] (DxvkContext* ctx) { - auto debugLabel = vk::makeLabel(0xc0a2f0, cFlushReason.c_str()); + auto debugLabel = vk::makeLabel(0xff5959, cFlushReason.c_str()); ctx->signal(cSubmissionFence, cSubmissionId); ctx->signal(cStagingFence, cStagingMemory);