r.SceneRenderCleanUpMode
r.SceneRenderCleanUpMode
#Overview
name: r.SceneRenderCleanUpMode
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Controls when to perform clean up of the scene renderer.\n 0: clean up is performed immediately after render on the render thread.\n 1: clean up deferred until the start of the next scene render on the render thread.\n 2: clean up deferred until the start of the next scene render on the render thread, with some work distributed to an async task. (default)\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/Renderer/Private/SceneRendering.cpp:4456
Scope: file
Source code excerpt:
static int32 GSceneRenderCleanUpMode = 2;
static FAutoConsoleVariableRef CVarSceneRenderCleanUpMode(
TEXT("r.SceneRenderCleanUpMode"),
GSceneRenderCleanUpMode,
TEXT("Controls when to perform clean up of the scene renderer.\n")
TEXT(" 0: clean up is performed immediately after render on the render thread.\n")
TEXT(" 1: clean up deferred until the start of the next scene render on the render thread.\n")
TEXT(" 2: clean up deferred until the start of the next scene render on the render thread, with some work distributed to an async task. (default)\n"),
ECVF_RenderThreadSafe