mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Highlight multisampled render passes when debugging
This commit is contained in:
parent
285f1f24c5
commit
023238e4d1
1 changed files with 11 additions and 1 deletions
|
@ -3008,6 +3008,8 @@ namespace dxvk {
|
||||||
|
|
||||||
|
|
||||||
void DxvkContext::beginRenderPassDebugRegion() {
|
void DxvkContext::beginRenderPassDebugRegion() {
|
||||||
|
VkSampleCountFlagBits sampleCount = VK_SAMPLE_COUNT_1_BIT;
|
||||||
|
|
||||||
bool hasColorAttachments = false;
|
bool hasColorAttachments = false;
|
||||||
bool hasDepthAttachment = m_state.om.renderTargets.depth.view != nullptr;
|
bool hasDepthAttachment = m_state.om.renderTargets.depth.view != nullptr;
|
||||||
|
|
||||||
|
@ -3033,6 +3035,7 @@ namespace dxvk {
|
||||||
label << (hasColorAttachments ? ", " : "") << i << ": " << (imageName ? imageName : "unknown");
|
label << (hasColorAttachments ? ", " : "") << i << ": " << (imageName ? imageName : "unknown");
|
||||||
|
|
||||||
hasColorAttachments = true;
|
hasColorAttachments = true;
|
||||||
|
sampleCount = m_state.om.renderTargets.color[i].view->image()->info().sampleCount;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3042,14 +3045,21 @@ namespace dxvk {
|
||||||
|
|
||||||
const char* imageName = m_state.om.renderTargets.depth.view->image()->info().debugName;
|
const char* imageName = m_state.om.renderTargets.depth.view->image()->info().debugName;
|
||||||
label << "DS:" << (imageName ? imageName : "unknown");
|
label << "DS:" << (imageName ? imageName : "unknown");
|
||||||
|
|
||||||
|
sampleCount = m_state.om.renderTargets.depth.view->image()->info().sampleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!hasColorAttachments && !hasDepthAttachment)
|
if (!hasColorAttachments && !hasDepthAttachment)
|
||||||
label << "No attachments";
|
label << "No attachments";
|
||||||
|
|
||||||
|
if (sampleCount > VK_SAMPLE_COUNT_1_BIT)
|
||||||
|
label << ", " << uint32_t(sampleCount) << "x MSAA";
|
||||||
|
|
||||||
label << ")";
|
label << ")";
|
||||||
|
|
||||||
pushDebugRegion(vk::makeLabel(0xf0e6dc, label.str().c_str()),
|
uint32_t color = sampleCount > VK_SAMPLE_COUNT_1_BIT ? 0xf0dcf0 : 0xf0e6dc;
|
||||||
|
|
||||||
|
pushDebugRegion(vk::makeLabel(color, label.str().c_str()),
|
||||||
util::DxvkDebugLabelType::InternalRenderPass);
|
util::DxvkDebugLabelType::InternalRenderPass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue