< Home

< Table of Contents

REFERENCE MANUAL

HPS.Performance Class Reference

Public Types

enum  DisplayLists { NoDisplayLists = 0, GeometryDisplayLists = 1, SegmentDisplayLists = 2 }
 Display lists are a GPU hardware caching technology which can greatly improve rendering performance. More...
 
enum  StaticModel { StaticModel.NoStaticModel = 0, StaticModel.AttributeStaticModel = 1, StaticModel.AttributeSpatialStaticModel = 2 }
 StaticModel is a technique used for improving rendering performance. More...
 

Member Enumeration Documentation

Display lists are a GPU hardware caching technology which can greatly improve rendering performance.

The underlying implementation depends on the 3D driver being used.

StaticModel is a technique used for improving rendering performance.

This setting tells the system that the segment tree affected by the attribute will remain 'static' or unchanging. The system will create an internal, optimized segment tree which is used for rendering in lieu of the normal tree. The original segment tree is untouched and can be used normally.If changes are made in a part of the segment tree that is subject to the static model attribute, the internal tree will be regenerated, with a few exceptions: If geometry is deleted or edited, the internal tree will not need to be regenerated.

Enumerator
NoStaticModel 

No static model will be used, rendering will be done from the segment tree.

AttributeStaticModel 

An optimized segment tree will be used for rendering.

The tree will be sorted by attributes.

AttributeSpatialStaticModel 

An optimized segment tree will be used for rendering.

The tree will be sorted based on both attributes and spatial locations of objects. This is particularly useful for very large, spatially dispersed models.


The documentation for this class was generated from the following file: