Home -> IRenderPassNode -> AttachmentStoreBehavior

Description

The AttachmentStoreBehavior enumeration specifies whether final attachment contents must be preserved after a render pass completes.

WarningWarning

Selecting UndefinedFinalData means later render passes, output capture, texture sampling, and presentation must not depend on the attachment contents produced by this pass.

Members

Name Description
Public Enum StoreFinalData
Requires the renderer to preserve the final attachment contents after the render pass completes, making them available for later passes, presentation, capture, or resource reads.
Public Enum UndefinedFinalData
Allows the renderer to discard the final attachment contents when the pass completes. This can be more efficient for transient attachments whose contents are not needed later.

See also