mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-08 10:54:15 +01:00
43 lines
870 B
C++
43 lines
870 B
C++
#pragma once
|
|
|
|
#include "d3d11_include.h"
|
|
|
|
namespace dxvk {
|
|
|
|
class D3D11DeviceContext;
|
|
|
|
class D3D11UserDefinedAnnotation : ID3DUserDefinedAnnotation {
|
|
|
|
public:
|
|
|
|
D3D11UserDefinedAnnotation(D3D11DeviceContext* ctx);
|
|
~D3D11UserDefinedAnnotation();
|
|
|
|
ULONG STDMETHODCALLTYPE AddRef();
|
|
|
|
ULONG STDMETHODCALLTYPE Release();
|
|
|
|
HRESULT STDMETHODCALLTYPE QueryInterface(
|
|
REFIID riid,
|
|
void** ppvObject);
|
|
|
|
INT STDMETHODCALLTYPE BeginEvent(
|
|
LPCWSTR Name);
|
|
|
|
INT STDMETHODCALLTYPE EndEvent();
|
|
|
|
void STDMETHODCALLTYPE SetMarker(
|
|
LPCWSTR Name);
|
|
|
|
BOOL STDMETHODCALLTYPE GetStatus();
|
|
|
|
private:
|
|
|
|
D3D11DeviceContext* m_container;
|
|
|
|
// Stack depth for non-finalized BeginEvent calls
|
|
int32_t m_eventDepth;
|
|
};
|
|
|
|
}
|