r.Vulkan.RayTracing.AllowDeferredOperation
r.Vulkan.RayTracing.AllowDeferredOperation
#Overview
name: r.Vulkan.RayTracing.AllowDeferredOperation
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Whether to use Vulkan Deferred Operation for RT pipeline creation. (default = -1)\n <0: Disabled\n 0: Enabled, auto detect the maximum number of threads >0: Enabled, use the specified number of threads
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/VulkanRayTracing.cpp:38
Scope: file
Source code excerpt:
static int32 GVulkanRayTracingAllowDeferredOperation = -1;
static FAutoConsoleVariableRef CVarVulkanRayTracingAllowDeferredOperation(
TEXT("r.Vulkan.RayTracing.AllowDeferredOperation"),
GVulkanRayTracingAllowDeferredOperation,
TEXT("Whether to use Vulkan Deferred Operation for RT pipeline creation. (default = -1)\n")
TEXT(" <0: Disabled\n")
TEXT(" 0: Enabled, auto detect the maximum number of threads")
TEXT(" >0: Enabled, use the specified number of threads"),
ECVF_ReadOnly