RHIPoolAllocator.DefragSizeFraction

RHIPoolAllocator.DefragSizeFraction

#Overview

name: RHIPoolAllocator.DefragSizeFraction

This variable is created as a Console Variable (cvar).

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/RHIPoolAllocator.cpp:5

Scope: file

Source code excerpt:

static float GRHIPoolAllocatorDefragSizeFraction = 0.9f;
static FAutoConsoleVariableRef CVarRHIPoolAllocatorDefragSizeFraction(
	TEXT("RHIPoolAllocator.DefragSizeFraction"),
	GRHIPoolAllocatorDefragSizeFraction,
	TEXT("Skip defrag of pool if usage is more than given fraction (default: 0.9f)."),
	ECVF_Default);

static int32 GRHIPoolAllocatorDefragMaxPoolsToClear = 1;
static FAutoConsoleVariableRef CVarRHIPoolAllocatorDefragMaxPoolsToClear(