r.Vulkan.AutoCorrectExpectedLayouts
r.Vulkan.AutoCorrectExpectedLayouts
#Overview
name: r.Vulkan.AutoCorrectExpectedLayouts
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Will use layout tracking to correct mismatched layouts when setting expected layouts. \nThis is unsafe for multi-threaded command buffer generations\n 0: Do not correct layouts.\n 1: Correct the layouts using layout tracking. (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:24
Scope: file
Source code excerpt:
int32 GVulkanAutoCorrectExpectedLayouts = 1;
static FAutoConsoleVariableRef CVarVulkanAutoCorrectExpectedLayouts(
TEXT("r.Vulkan.AutoCorrectExpectedLayouts"),
GVulkanAutoCorrectExpectedLayouts,
TEXT("Will use layout tracking to correct mismatched layouts when setting expected layouts. \n")
TEXT("This is unsafe for multi-threaded command buffer generations\n")
TEXT(" 0: Do not correct layouts.\n")
TEXT(" 1: Correct the layouts using layout tracking. (default)"),
ECVF_Default