r.SparseVolumeTexture.Streaming.ForceEstimateFrameRate
r.SparseVolumeTexture.Streaming.ForceEstimateFrameRate
#Overview
name: r.SparseVolumeTexture.Streaming.ForceEstimateFrameRate
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Forces the streaming system to always estimate the SVT playback frame rate instead of using the explicit frame rate that is passed in with the streaming requests. Intended for debugging.
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/SparseVolumeTextureStreamingInstance.cpp:14
Scope: file
Source code excerpt:
static int32 GSVTStreamingForceEstimateFrameRate = 0;
static FAutoConsoleVariableRef CVarSVTStreamingForceEstimateFrameRate(
TEXT("r.SparseVolumeTexture.Streaming.ForceEstimateFrameRate"),
GSVTStreamingForceEstimateFrameRate,
TEXT("Forces the streaming system to always estimate the SVT playback frame rate instead of using the explicit frame rate that is passed in with the streaming requests. Intended for debugging."),
ECVF_RenderThreadSafe
);
static int32 GSVTStreamingRequestSizeGranularity = 128 * 1024;