| 306 | // == ProfileBlock ================================================================================ |
| 307 | |
| 308 | ProfileBlock::ProfileBlock(ID3D12GraphicsCommandList* cmdList_, const char* name) : cmdList(cmdList_) |
| 309 | { |
| 310 | idx = Profiler::GlobalProfiler.StartProfile(cmdList, name); |
| 311 | } |
| 312 | |
| 313 | ProfileBlock::~ProfileBlock() |
| 314 | { |
nothing calls this directly
no test coverage detected