Click or drag to resize
AB4D logo

BackBufferReadyEventArgsIsRegisteredForBackBufferMapping Property

Boolean that can be set to false by the subscriber of the BackBufferReadyEventHandler to unregister from being called on the next frame.

Namespace: Ab3d.DirectX
Assembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax
C#
public bool IsRegisteredForBackBufferMapping { get; set; }

Property Value

Boolean
Remarks

IsRegisteredForBackBufferMapping is a Boolean that is set to true by default. The subscriber of the BackBufferReadyEventHandler can set it to false to unregister from being called on the next frame.

This simplifies scenarios when only one frame is captured. With setting the IsRegisteredForBackBufferMapping to false, the subscribed does not need to call the UnregisterBackBufferMapping(BackBufferReadyEventHandler) method and does not need to provide the delegate as a method.

See Also