Click or drag to resize
SoLDMResourceParametersScreenResolutionCullingPolicies Enumeration

Screen resolution culling policies.

Namespace: OIV.LDM.Nodes
Assembly: OIV.LDM (in OIV.LDM.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public enum ScreenResolutionCullingPolicies
Members
  Member nameValueDescription
SCREEN_RESOLUTION_CULLING_OFF0

Screen resolution culling is disabled.

SCREEN_RESOLUTION_CULLING_ON1

Screen resolution culling is enabled.

Only tiles for which the projection of a voxel is greater than or equal to 1 pixel on screen will be loaded. This avoids unnecessary loading of high resolution data for large volumes. However if you "zoom out" from a volume, it does not force lower resolution tiles to be used (high resolution tiles already in memory will still be used). If necessary use the OIV.LDM.Nodes.SoLDMResourceParameters.fixedResolution field to force use of lower resolution tiles.

SCREEN_RESOLUTION_CULLING_INHERITED_FROM_GLOBAL2

Screen resolution culling will be enabled or not according to the flag returned by OIV.LDM.SoLDMGlobalResourceParameters.GetScreenResolutionCulling()

Remarks
See Also