Slate.BackgroundBlurMaxKernelSize
Slate.BackgroundBlurMaxKernelSize
#Overview
name: Slate.BackgroundBlurMaxKernelSize
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The maximum allowed kernel size. Note: Very large numbers can cause a huge decrease in performance
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/Slate/Private/Widgets/Layout/SBackgroundBlur.cpp:8
Scope: file
Source code excerpt:
static int32 MaxKernelSize = 255;
static FAutoConsoleVariableRef CVarSlateMaxKernelSize(TEXT("Slate.BackgroundBlurMaxKernelSize"), MaxKernelSize, TEXT("The maximum allowed kernel size. Note: Very large numbers can cause a huge decrease in performance"));
static int32 bDownsampleForBlur = 1;
static FAutoConsoleVariableRef CVarDownsampleForBlur(TEXT("Slate.BackgroundBlurDownsample"), bDownsampleForBlur, TEXT(""), ECVF_Cheat);
static int32 bForceLowQualityBrushFallback = 0;
static FAutoConsoleVariableRef CVarForceLowQualityBackgroundBlurOverride(TEXT("Slate.ForceBackgroundBlurLowQualityOverride"), bForceLowQualityBrushFallback, TEXT("Whether or not to force a slate brush to be used instead of actually blurring the background"), ECVF_Scalability);