[d3d11] Make user defined annotation more robust

This commit is contained in:
Philip Rebohle 2025-03-05 16:29:28 +01:00
parent d8eb4d0d66
commit 91b48dd31d
2 changed files with 22 additions and 24 deletions

View file

@ -37,7 +37,7 @@ namespace dxvk {
D3D11UserDefinedAnnotation<ContextType>::D3D11UserDefinedAnnotation(
ContextType* container,
const Rc<DxvkDevice>& dxvkDevice)
: m_container(container), m_eventDepth(0),
: m_container(container),
m_annotationsEnabled(dxvkDevice->isDebugEnabled()) {
if (!IsDeferred && m_annotationsEnabled)
RegisterUserDefinedAnnotation<true>(this);
@ -75,19 +75,16 @@ namespace dxvk {
INT STDMETHODCALLTYPE D3D11UserDefinedAnnotation<ContextType>::BeginEvent(
D3DCOLOR Color,
LPCWSTR Name) {
if (!m_annotationsEnabled)
if (!m_annotationsEnabled || !Name)
return -1;
D3D10DeviceLock lock = m_container->LockContext();
m_container->EmitCs([color = Color, labelName = dxvk::str::fromws(Name)](DxvkContext *ctx) {
VkDebugUtilsLabelEXT label;
label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
label.pNext = nullptr;
label.pLabelName = labelName.c_str();
DecodeD3DCOLOR(color, label.color);
ctx->beginDebugLabel(label);
m_container->EmitCs([
cColor = Color,
cLabel = dxvk::str::fromws(Name)
] (DxvkContext* ctx) {
ctx->beginDebugLabel(vk::makeLabel(cColor, cLabel.c_str()));
});
return m_eventDepth++;
@ -101,11 +98,14 @@ namespace dxvk {
D3D10DeviceLock lock = m_container->LockContext();
m_container->EmitCs([](DxvkContext *ctx) {
if (!m_eventDepth)
return 0;
m_container->EmitCs([] (DxvkContext* ctx) {
ctx->endDebugLabel();
});
return m_eventDepth--;
return --m_eventDepth;
}
@ -113,19 +113,16 @@ namespace dxvk {
void STDMETHODCALLTYPE D3D11UserDefinedAnnotation<ContextType>::SetMarker(
D3DCOLOR Color,
LPCWSTR Name) {
if (!m_annotationsEnabled)
if (!m_annotationsEnabled || !Name)
return;
D3D10DeviceLock lock = m_container->LockContext();
m_container->EmitCs([color = Color, labelName = dxvk::str::fromws(Name)](DxvkContext *ctx) {
VkDebugUtilsLabelEXT label;
label.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT;
label.pNext = nullptr;
label.pLabelName = labelName.c_str();
DecodeD3DCOLOR(color, label.color);
ctx->insertDebugLabel(label);
m_container->EmitCs([
cColor = Color,
cLabel = dxvk::str::fromws(Name)
] (DxvkContext* ctx) {
ctx->insertDebugLabel(vk::makeLabel(cColor, cLabel.c_str()));
});
}

View file

@ -48,9 +48,10 @@ namespace dxvk {
private:
ContextType* m_container;
int32_t m_eventDepth;
bool m_annotationsEnabled;
ContextType* m_container = nullptr;
int32_t m_eventDepth = 0u;
bool m_annotationsEnabled = false;
};
}