r.Vulkan.UseMemoryBarrierOpt
r.Vulkan.UseMemoryBarrierOpt
#Overview
name: r.Vulkan.UseMemoryBarrierOpt
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Simplify buffer barriers and image barriers without layout transitions to a memory barrier.\n 0: Do not collapse to a single memory barrier, useful for tracking single resource transitions in external tools\n 1: Collapse to a memory barrier when appropriate (default)
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/VulkanBarriers.cpp:14
Scope: file
Source code excerpt:
int32 GVulkanUseMemoryBarrierOpt = 1;
static FAutoConsoleVariableRef CVarVulkanUseMemoryBarrierOpt(
TEXT("r.Vulkan.UseMemoryBarrierOpt"),
GVulkanUseMemoryBarrierOpt,
TEXT("Simplify buffer barriers and image barriers without layout transitions to a memory barrier.\n")
TEXT(" 0: Do not collapse to a single memory barrier, useful for tracking single resource transitions in external tools\n")
TEXT(" 1: Collapse to a memory barrier when appropriate (default)"),
ECVF_Default
);