framegrabber.framelatency
framegrabber.framelatency
#Overview
name: framegrabber.framelatency
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
How many frames to wait before reading back a frame. 0 frames will work but cause a performance regression due to CPU and GPU syncing up.\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/MovieSceneCapture/Private/FrameGrabber.cpp:20
Scope: file
Source code excerpt:
int32 GFrameGrabberFrameLatency = 0;
static FAutoConsoleVariableRef CVarFrameGrabberFrameLatency(
TEXT("framegrabber.framelatency"),
GFrameGrabberFrameLatency,
TEXT("How many frames to wait before reading back a frame. 0 frames will work but cause a performance regression due to CPU and GPU syncing up.\n"),
ECVF_RenderThreadSafe | ECVF_Scalability
);