Click or drag to resize
SoVolumeRenderSetRenderProgress Method

Set an application defined SoProgressIndicator object which will raise an event before and after the volume rendering task, before and after each subtask (in this case: Texture creation and Geometry creation) and after each step in the subtasks which represents in most cases individual tiles of data.

Namespace: OIV.VolumeViz.Nodes
Assembly: OIV.VolumeViz (in OIV.VolumeViz.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax
public void SetRenderProgress(
	SoProgressIndicator ps
)

Parameters

ps
Type: OIV.InventorSoProgressIndicator
Remarks

This method is useful to track loading time of the first frame if in #fixedResolution mode.

  • #onBeginTask / #onEndTask will be raised only one time per frame : "Rendering".

  • #onBeginSubTask / #onEndSubTask will be raised 2 times per frame : "Loading Texture" and "Create Geometry".

  • #onEndStep will be raised "number of tiles" times per subtask.

If set to NULL no events will be raised. Default is NULL.

Since Open Inventor 9.9

See Also