fx.GPUSort.BufferSlack
fx.GPUSort.BufferSlack
#Overview
name: fx.GPUSort.BufferSlack
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Slack ratio when resizing GPU sort buffers. Must be bigger than 1 (default=2)
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/Public/GPUSortManager.h:216
Scope: file
Source code excerpt:
/** The union of all clients flags. */
EGPUSortFlags AllowedFlags = EGPUSortFlags::None;
/** The buffer slack when increasing or shrinking. See "fx.GPUSort.BufferSlack" */
float BufferSlack = 2.f;
/** The number of frames before shrinking a buffer that is too big. See "fx.GPUSort.FrameCountBeforeShrinking" */
int32 FrameCountBeforeShrinking = 100;
/** The minimal size of the sort buffers. See "fx.GPUSort.MinBufferSize" */
int32 MinBufferSize = 8192;
};