D3D12.DumpTrackedResidentAllocations
D3D12.DumpTrackedResidentAllocations
#Overview
name: D3D12.DumpTrackedResidentAllocations
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Dump all tracked resisdent 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:1929
Scope: file
Source code excerpt:
static FAutoConsoleCommandWithOutputDevice GDumpTrackedD3D12ResidentAllocationsCmd(
TEXT("D3D12.DumpTrackedResidentAllocations"),
TEXT("Dump all tracked resisdent d3d12 resource allocations."),
FConsoleCommandWithOutputDeviceDelegate::CreateStatic([](FOutputDevice& OutputDevice)
{
FD3D12DynamicRHI::GetD3DRHI()->GetAdapter().DumpTrackedAllocationData(OutputDevice, true, false);
})
);