r.VT.Support16BitPageTable
r.VT.Support16BitPageTable
#Overview
name: r.VT.Support16BitPageTable
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Enable support for 16 bit page table entries.\nThis can reduce page table memory when only 16bit addressing is needed.\nBut this can increase the number of page table spaces required when a mixture of 16bit and 32bit addressing is needed.\nDefaults on.\n
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/Renderer/Private/VT/AllocatedVirtualTexture.cpp:10
Scope: file
Source code excerpt:
bool GSupport16BitPageTable = true;
static FAutoConsoleVariableRef CVarVTSupport16BitPageTable(
TEXT("r.VT.Support16BitPageTable"),
GSupport16BitPageTable,
TEXT("Enable support for 16 bit page table entries.\n")
TEXT("This can reduce page table memory when only 16bit addressing is needed.\n")
TEXT("But this can increase the number of page table spaces required when a mixture of 16bit and 32bit addressing is needed.\n")
TEXT("Defaults on.\n"),
ECVF_ReadOnly);