r.RayTracing.ExcludeDecals
r.RayTracing.ExcludeDecals
#Overview
name: r.RayTracing.ExcludeDecals
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
A toggle that modifies the inclusion of decals in the ray tracing BVH.\n 0: Decals included in the ray tracing BVH (default)\n 1: Decals excluded from the ray tracing BVH
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/Renderer/Private/RayTracing/RayTracing.cpp:72
Scope: file
Source code excerpt:
static int32 GRayTracingExcludeDecals = 0;
static FAutoConsoleVariableRef CRayTracingExcludeDecals(
TEXT("r.RayTracing.ExcludeDecals"),
GRayTracingExcludeDecals,
TEXT("A toggle that modifies the inclusion of decals in the ray tracing BVH.\n")
TEXT(" 0: Decals included in the ray tracing BVH (default)\n")
TEXT(" 1: Decals excluded from the ray tracing BVH"),
ECVF_RenderThreadSafe);