r.TrackCsvNamedEvents
r.TrackCsvNamedEvents
#Overview
name: r.TrackCsvNamedEvents
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Whether to record named events in the csv profiler
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/Core/Private/GenericPlatform/GenericPlatformMisc.cpp:59
Scope: file
Source code excerpt:
bool GTrackCsvNamedEvents = false;
static FAutoConsoleVariableRef CVarTrackCsvNamedEvents(
TEXT("r.TrackCsvNamedEvents"),
GTrackCsvNamedEvents,
TEXT("Whether to record named events in the csv profiler"),
ECVF_Default
);
static std::atomic<uint32> GNamedEventMarkers(0L);
#endif