Click or drag to resize
DigitalRuneCameraLastProjection Property
Gets or sets the projection transformation of the last frame.

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public Nullable<Matrix44F> LastProjection { get; set; }

Property Value

Type: NullableMatrix44F
The projection transformation of the last frame. Can be .
Remarks

The property LastProjection is an optional property. It stores the projection transformation of the last frame that was rendered. This information is required for temporal reprojection, which is used in temporal caching or camera motion blur.

Important: This property is not updated automatically! LastProjection needs to be set by the application logic whenever the camera projection is changed.

See Also