2018-06-11 14:29:47 +02:00
|
|
|
#include "d3d11_annotation.h"
|
2021-04-01 12:16:44 -07:00
|
|
|
#include "d3d11_context.h"
|
|
|
|
#include "d3d11_device.h"
|
2018-06-11 14:29:47 +02:00
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
2021-04-01 12:16:44 -07:00
|
|
|
D3D11UserDefinedAnnotation::D3D11UserDefinedAnnotation(D3D11DeviceContext* ctx)
|
|
|
|
: m_container(ctx),
|
|
|
|
m_eventDepth(0) { }
|
2018-06-11 14:29:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
D3D11UserDefinedAnnotation::~D3D11UserDefinedAnnotation() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ULONG STDMETHODCALLTYPE D3D11UserDefinedAnnotation::AddRef() {
|
|
|
|
return m_container->AddRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ULONG STDMETHODCALLTYPE D3D11UserDefinedAnnotation::Release() {
|
|
|
|
return m_container->Release();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE D3D11UserDefinedAnnotation::QueryInterface(
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject) {
|
|
|
|
return m_container->QueryInterface(riid, ppvObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INT STDMETHODCALLTYPE D3D11UserDefinedAnnotation::BeginEvent(
|
|
|
|
LPCWSTR Name) {
|
2021-04-01 12:16:44 -07:00
|
|
|
if (!m_container->IsAnnotationEnabled())
|
|
|
|
return -1;
|
|
|
|
|
2021-12-17 17:48:51 +00:00
|
|
|
D3D10DeviceLock lock = m_container->LockContext();
|
|
|
|
|
2021-04-01 12:16:44 -07:00
|
|
|
m_container->EmitCs([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();
|
|
|
|
label.color[0] = 1.0f;
|
|
|
|
label.color[1] = 1.0f;
|
|
|
|
label.color[2] = 1.0f;
|
|
|
|
label.color[3] = 1.0f;
|
|
|
|
|
|
|
|
ctx->beginDebugLabel(&label);
|
|
|
|
});
|
|
|
|
|
|
|
|
return m_eventDepth++;
|
2018-06-11 14:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INT STDMETHODCALLTYPE D3D11UserDefinedAnnotation::EndEvent() {
|
2021-04-01 12:16:44 -07:00
|
|
|
if (!m_container->IsAnnotationEnabled())
|
|
|
|
return -1;
|
|
|
|
|
2021-12-17 17:48:51 +00:00
|
|
|
D3D10DeviceLock lock = m_container->LockContext();
|
|
|
|
|
2021-04-01 12:16:44 -07:00
|
|
|
m_container->EmitCs([](DxvkContext *ctx) {
|
|
|
|
ctx->endDebugLabel();
|
|
|
|
});
|
|
|
|
|
|
|
|
return m_eventDepth--;
|
2018-06-11 14:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void STDMETHODCALLTYPE D3D11UserDefinedAnnotation::SetMarker(
|
|
|
|
LPCWSTR Name) {
|
2021-04-01 12:16:44 -07:00
|
|
|
if (!m_container->IsAnnotationEnabled())
|
|
|
|
return;
|
|
|
|
|
2021-12-17 17:48:51 +00:00
|
|
|
D3D10DeviceLock lock = m_container->LockContext();
|
|
|
|
|
2021-04-01 12:16:44 -07:00
|
|
|
m_container->EmitCs([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();
|
|
|
|
label.color[0] = 1.0f;
|
|
|
|
label.color[1] = 1.0f;
|
|
|
|
label.color[2] = 1.0f;
|
|
|
|
label.color[3] = 1.0f;
|
|
|
|
|
|
|
|
ctx->insertDebugLabel(&label);
|
|
|
|
});
|
2018-06-11 14:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOL STDMETHODCALLTYPE D3D11UserDefinedAnnotation::GetStatus() {
|
2021-04-01 12:16:44 -07:00
|
|
|
return m_container->IsAnnotationEnabled();
|
2018-06-11 14:29:47 +02:00
|
|
|
}
|
|
|
|
|
2021-04-01 12:16:44 -07:00
|
|
|
}
|