diff --git a/src/d3d11/d3d11_annotation.cpp b/src/d3d11/d3d11_annotation.cpp index 5b5494501..17afa02aa 100644 --- a/src/d3d11/d3d11_annotation.cpp +++ b/src/d3d11/d3d11_annotation.cpp @@ -37,7 +37,7 @@ namespace dxvk { D3D11UserDefinedAnnotation::D3D11UserDefinedAnnotation( ContextType* container, const Rc& dxvkDevice) - : m_container(container), m_eventDepth(0), + : m_container(container), m_annotationsEnabled(dxvkDevice->isDebugEnabled()) { if (!IsDeferred && m_annotationsEnabled) RegisterUserDefinedAnnotation(this); @@ -75,19 +75,16 @@ namespace dxvk { INT STDMETHODCALLTYPE D3D11UserDefinedAnnotation::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::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())); }); } diff --git a/src/d3d11/d3d11_annotation.h b/src/d3d11/d3d11_annotation.h index ec569a9a0..64a0539ae 100644 --- a/src/d3d11/d3d11_annotation.h +++ b/src/d3d11/d3d11_annotation.h @@ -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; + }; }