r.Emitter.FastPoolMaxFreeSize
r.Emitter.FastPoolMaxFreeSize
#Overview
name: r.Emitter.FastPoolMaxFreeSize
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Max free pool size to keep around without cleaning up.
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/Particles/ParticleEmitterInstances.cpp:170
Scope: file
Source code excerpt:
static int32 GMaxFreePoolSizeBytes = 2 * 1024 * 1024;
static FAutoConsoleVariableRef CVarFastPoolMaxFreeSize(
TEXT("r.Emitter.FastPoolMaxFreeSize"),
GMaxFreePoolSizeBytes,
TEXT("Max free pool size to keep around without cleaning up."),
ECVF_Default
);
FCriticalSection GFastPoolsCriticalSection;