Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

struct Enlighten::PppiConfiguration

PppiConfiguration.

Enums

NameDescription
AtlasResolution

The available resolutions for the atlas.

Variables

NameDescription
AtlasResolution m_AtlasResolution

The resolution of each atlas slice, in tiles.

Geo::u32 m_AtlasSize

The number of slices in the atlas. Each slice contains 64x64 tiles, 192x192 texels.

bool m_DoubleLodDistance

When true, double the distance at which a given probe LOD is available.

Geo::u32 m_MaxProbeSets

The maximum number of concurrently added probe sets. 8 bytes allocated per probe set. Default 65536 = 512KB.

Geo::u32 m_ResolutionBias

The highest resolution required in the PPPI clipmap.

PppiAtlasFootprint::TileDistribution m_TileDistribution

The number of tiles in each atlas pool.

bool m_UseComputeUpdate

When true, updates are processed by IPppiComputeUpdateHandler.

const Geo::u32 MaxAtlasSize = 64

The maximum number of slices in the atlas.

Functions

NameDescription
GetAtlasResolution()

Return the resolution of one slice in the atlas.

GetAtlasSize()

Return the number of slices in the atlas.

IsValid()

Return true if the configuration is valid.

PppiConfiguration(bool)

Constructor.


Anchor
a3292f0b69e3c6c83e11573451bfb0ea6
a3292f0b69e3c6c83e11573451bfb0ea6

AtlasResolution

...

public: enum AtlasResolution
{
    AtlasResolution32 = 32,
    AtlasResolution64 = 64
}

...

The available resolutions for the atlas.

enumerators
AtlasResolution32
AtlasResolution64


Anchor
af1a7db7b4a8e93a23180d65e055092c7
af1a7db7b4a8e93a23180d65e055092c7

AtlasResolution Enlighten::PppiConfiguration::GetAtlasResolution

...

public: AtlasResolution GetAtlasResolution() const

...

Return the resolution of one slice in the atlas.


Anchor
afd9d1a3468b66180f95b92a2317385c4
afd9d1a3468b66180f95b92a2317385c4

Geo::u32 Enlighten::PppiConfiguration::GetAtlasSize

...

public: Geo::u32 GetAtlasSize() const

...

Return the number of slices in the atlas.

Print an error if the size is not valid


Anchor
aa411e1564db1f7aba6de6e5592e4db2b
aa411e1564db1f7aba6de6e5592e4db2b

bool Enlighten::PppiConfiguration::IsValid

...

public: bool IsValid() const

...

Return true if the configuration is valid.


Anchor
aec3194ac98cc769019d8070f865e75f8
aec3194ac98cc769019d8070f865e75f8

Enlighten::PppiConfiguration::PppiConfiguration

...

public: PppiConfiguration
(
    bool doubleLodDistance
)

...

Constructor.