r.BadDriverWarningIsFatal

r.BadDriverWarningIsFatal

#Overview

name: r.BadDriverWarningIsFatal

This variable is created as a Console Variable (cvar).

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/RHI/Private/DynamicRHI.cpp:49

Scope: file

Source code excerpt:

static bool GBadDriverWarningIsFatal = false;
static FAutoConsoleVariableRef CVarBadDriverWarningIsFatal(
	TEXT("r.BadDriverWarningIsFatal"),
	GBadDriverWarningIsFatal,
	TEXT("If non-zero, trigger a fatal error if a denylisted driver is detected.\n")
	TEXT("For the fatal error to occur, r.WarnOfBadDrivers must be non-zero.\n")
	TEXT(" 0: off (default)\n")
	TEXT(" 1: a fatal error occurs after the out-of-date driver message is dismissed (non-Shipping only)\n"),
	ECVF_RenderThreadSafe);