gc.IncrementalGCTimePerFrame
gc.IncrementalGCTimePerFrame
#Overview
name: gc.IncrementalGCTimePerFrame
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
How much time is allowed for incremental GC each frame in seconds
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/Engine/Private/UnrealEngine.cpp:1650
Scope: file
Source code excerpt:
static float GIncrementalGCTimePerFrame = 0.002f; // 2ms
static FAutoConsoleVariableRef CVarIncrementalGCTimePerFrame(
TEXT("gc.IncrementalGCTimePerFrame"),
GIncrementalGCTimePerFrame,
TEXT("How much time is allowed for incremental GC each frame in seconds"),
ECVF_Default
);
#if UE_ENABLE_LOG_STACK_ON_FORCE_GC