fx.NiagaraGPUDataBufferShrinkFactor
fx.NiagaraGPUDataBufferShrinkFactor
#Overview
name: fx.NiagaraGPUDataBufferShrinkFactor
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Niagara GPU data buffer size threshold for shrinking. (Default=2) \nThe buffer will be reallocated when the used size becomes 1/F of the allocated size. \n
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/Plugins/FX/Niagara/Source/Niagara/Private/NiagaraDataSet.cpp:75
Scope: file
Source code excerpt:
static int32 GNiagaraGPUDataBufferShrinkFactor = 2;
static FAutoConsoleVariableRef CVarNiagaraGPUDataBufferShrinkFactor(
TEXT("fx.NiagaraGPUDataBufferShrinkFactor"),
GNiagaraGPUDataBufferShrinkFactor,
TEXT("Niagara GPU data buffer size threshold for shrinking. (Default=2) \n")
TEXT("The buffer will be reallocated when the used size becomes 1/F of the allocated size. \n"),
ECVF_Default
);