r.Vulkan.EnableTransientResourceAllocator
r.Vulkan.EnableTransientResourceAllocator
#Overview
name: r.Vulkan.EnableTransientResourceAllocator
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Whether to enable the TransientResourceAllocator to reduce memory usage\n0 to disabled (default)\n1 to enable\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/Source/Runtime/VulkanRHI/Private/VulkanRHI.cpp:83
Scope: file
Source code excerpt:
int32 GVulkanEnableTransientResourceAllocator = 1;
static FAutoConsoleVariableRef GCVarEnableTransientResourceAllocator(
TEXT("r.Vulkan.EnableTransientResourceAllocator"),
GVulkanEnableTransientResourceAllocator,
TEXT("Whether to enable the TransientResourceAllocator to reduce memory usage\n")
TEXT("0 to disabled (default)\n")
TEXT("1 to enable\n"),
ECVF_ReadOnly
);