Click or drag to resize
SoLDMResourceParametersminTilesToLoad Property

Minimum number of tiles that must be loaded in memory before rendering.

Namespace: OIV.LDM.Nodes
Assembly: OIV.LDM (in OIV.LDM.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public SoSFInt32 minTilesToLoad { get; }

Property Value

Type: SoSFInt32
Remarks

For example, if this number is 50 and 40 tiles are currently loaded, then at least 10 new tiles must be loaded before the next rendering.

This can be used as a "minimum quality" parameter, where the quality is defined by the number of loaded tiles in memory. No rendering will be done until this minimum number of tiles is loaded in memory.

The tiles are selected according to their weight, which depends in particular on their hierarchy level in the octree topology.

If this number of tiles requires a memory amount that exceeds OIV.LDM.Nodes.SoLDMResourceParameters.maxMainMemory, then it will be internally clamped to the maximum value that respects OIV.LDM.Nodes.SoLDMResourceParameters.maxMainMemory.

The default value is 1 (root tile only).

Note Note

Field available since Open Inventor 10.9.0

See Also