r.Vulkan.EvictionLimitPercentage

r.Vulkan.EvictionLimitPercentage

#Overview

name: r.Vulkan.EvictionLimitPercentage

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/VulkanRHI/Private/VulkanMemory.cpp:258

Scope: file

Source code excerpt:

static float GVulkanEvictionLimitPercentage = 80.f;
static FAutoConsoleVariableRef CVarVulkanEvictionLimitPercentage(
	TEXT("r.Vulkan.EvictionLimitPercentage"),
	GVulkanEvictionLimitPercentage,
	TEXT("When more than x% of local memory is used, evict resources to host memory"),
	ECVF_RenderThreadSafe
);