RHI.TransientAllocator.MinimumHeapSize
RHI.TransientAllocator.MinimumHeapSize
#Overview
name: RHI.TransientAllocator.MinimumHeapSize
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Minimum size of an RHI transient heap in MB. Heaps will default to this size and grow to the maximum based on the first allocation (Default 128).
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/RHICore/Private/RHICoreTransientResourceAllocator.cpp:10
Scope: file
Source code excerpt:
static int32 GRHITransientAllocatorMinimumHeapSize = 128;
static FAutoConsoleVariableRef CVarRHITransientAllocatorMinimumHeapSize(
TEXT("RHI.TransientAllocator.MinimumHeapSize"),
GRHITransientAllocatorMinimumHeapSize,
TEXT("Minimum size of an RHI transient heap in MB. Heaps will default to this size and grow to the maximum based on the first allocation (Default 128)."),
ECVF_ReadOnly);
static int32 GRHITransientAllocatorBufferCacheSize = 64;
static FAutoConsoleVariableRef CVarRHITransientAllocatorBufferCacheSize(