r.Vulkan.DefragSizeFactor
r.Vulkan.DefragSizeFactor
#Overview
name: r.Vulkan.DefragSizeFactor
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Amount of space required to be free, on other pages, before attempting to do a defrag of a page
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/VulkanRHI/Private/VulkanMemory.cpp:137
Scope: file
Source code excerpt:
float GVulkanDefragSizeFactor = 1.3f;
static FAutoConsoleVariableRef CVarVulkanDefragSizeFactor(
TEXT("r.Vulkan.DefragSizeFactor"),
GVulkanDefragSizeFactor,
TEXT("Amount of space required to be free, on other pages, before attempting to do a defrag of a page"),
ECVF_RenderThreadSafe
);
float GVulkanDefragSizeFraction = .7f;