r.Nanite.Streaming.MaxPageInstallsPerFrame

r.Nanite.Streaming.MaxPageInstallsPerFrame

#Overview

name: r.Nanite.Streaming.MaxPageInstallsPerFrame

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/Engine/Private/Rendering/NaniteStreamingManager.cpp:97

Scope: file

Source code excerpt:

static int32 GNaniteStreamingMaxPageInstallsPerFrame = 128;
static FAutoConsoleVariableRef CVarNaniteStreamingMaxPageInstallsPerFrame(
	TEXT("r.Nanite.Streaming.MaxPageInstallsPerFrame"),
	GNaniteStreamingMaxPageInstallsPerFrame,
	TEXT("Maximum number of pages that can be installed per frame. Limiting this can limit the overhead of streaming."),
	ECVF_RenderThreadSafe | ECVF_ReadOnly
);

static int32 GNaniteStreamingAsyncCompute = 1;