r.SparseVolumeTexture.Streaming.RequestMipBias
r.SparseVolumeTexture.Streaming.RequestMipBias
#Overview
name: r.SparseVolumeTexture.Streaming.RequestMipBias
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Bias to apply the calculated mip level to stream at. This is used to account for the mip estimation based on projected screen space size being very conservative. The default value of 1.0 was found empirically to roughly result in a 1:1 voxel to pixel ratio.
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/Engine/Private/SparseVolumeTexture/SparseVolumeTexture.cpp:57
Scope: file
Source code excerpt:
static float GSVTStreamingRequestMipBias = 1.0f;
static FAutoConsoleVariableRef CVarSVTStreamingRequestMipBias(
TEXT("r.SparseVolumeTexture.Streaming.RequestMipBias"),
GSVTStreamingRequestMipBias,
TEXT("Bias to apply the calculated mip level to stream at. This is used to account for the mip estimation based on projected screen space size being very conservative. ")
TEXT("The default value of 1.0 was found empirically to roughly result in a 1:1 voxel to pixel ratio."),
ECVF_Default
);