TaskGraph.RenderThreadPollPeriodMs
TaskGraph.RenderThreadPollPeriodMs
#Overview
name: TaskGraph.RenderThreadPollPeriodMs
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Render thread polling period in milliseconds. If value < 0, task graph tasks explicitly wake up RT, otherwise RT polls for tasks.
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/RenderCore/Private/RenderingThread.cpp:85
Scope: file
Source code excerpt:
static FAutoConsoleVariable CVarRenderThreadPollPeriodMs(
TEXT("TaskGraph.RenderThreadPollPeriodMs"),
1,
TEXT("Render thread polling period in milliseconds. If value < 0, task graph tasks explicitly wake up RT, otherwise RT polls for tasks."),
FConsoleVariableDelegate::CreateStatic(&OnRenderThreadPollPeriodMsChanged)
);
/** Function to stall the rendering thread **/