D3D12.DumpTrackedAllocations
D3D12.DumpTrackedAllocations
#Overview
name: D3D12.DumpTrackedAllocations
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Dump all tracked d3d12 resource allocations.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/D3D12RHI/Private/D3D12Adapter.cpp:1911
Scope: file
Source code excerpt:
static FAutoConsoleCommandWithOutputDevice GDumpTrackedD3D12AllocationsCmd(
TEXT("D3D12.DumpTrackedAllocations"),
TEXT("Dump all tracked d3d12 resource allocations."),
FConsoleCommandWithOutputDeviceDelegate::CreateStatic([](FOutputDevice& OutputDevice)
{
FD3D12DynamicRHI::GetD3DRHI()->GetAdapter().DumpTrackedAllocationData(OutputDevice, false, false);
})
);