Automation.EnableStereoTestVariants
Automation.EnableStereoTestVariants
#Overview
name: Automation.EnableStereoTestVariants
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Whether to enable stereo test variants for screenshot functional tests
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Misc/AutomationTest.cpp:53
Scope (from outer to inner):
file
namespace AutomationTest
Source code excerpt:
static bool bEnableStereoTestVariants = false;
static FAutoConsoleVariableRef CVarAutomationEnableStereoTestVariants(
TEXT("Automation.EnableStereoTestVariants"),
bEnableStereoTestVariants,
TEXT("Whether to enable stereo test variants for screenshot functional tests"));
static bool bLightweightStereoTestVariants = true;
static FAutoConsoleVariableRef CVarAutomationLightweightStereoTestVariants(
TEXT("Automation.LightweightStereoTestVariants"),
#Loc: <Workspace>/Engine/Source/Developer/AutomationController/Private/AutomationCommandline.cpp:701
Scope: file
Source code excerpt:
else if (FParse::Command(&TempCmd, TEXT("EnableStereoTests")))
{
if (IConsoleVariable* CVar = IConsoleManager::Get().FindConsoleVariable(TEXT("Automation.EnableStereoTestVariants")))
{
Ar.Logf(TEXT("Automation: Enabling Stereo Test Variants"));
CVar->Set(true);
}
}
else if (FParse::Command(&TempCmd, TEXT("Help")))