r.Nanite.Streaming.NumInitialImposters

r.Nanite.Streaming.NumInitialImposters

#Overview

name: r.Nanite.Streaming.NumInitialImposters

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:65

Scope: file

Source code excerpt:

static int32 GNaniteStreamingNumInitialImposters = 2048;
static FAutoConsoleVariableRef CVarNaniteStreamingNumInitialImposters(
	TEXT("r.Nanite.Streaming.NumInitialImposters"),
	GNaniteStreamingNumInitialImposters,
	TEXT("Number of imposters in initial allocation. Allowed to grow on demand if r.Nanite.Streaming.DynamicallyGrowAllocations is enabled."),
	ECVF_RenderThreadSafe | ECVF_ReadOnly
);

static int32 GNaniteStreamingDynamicallyGrowAllocations = 1;