pub struct Attachment {
pub format: Option<Format>,
pub samples: NumSamples,
pub ops: AttachmentOps,
pub stencil_ops: AttachmentOps,
pub layouts: Range<AttachmentLayout>,
}
Expand description
An attachment is a description of a resource provided to a render subpass.
It includes things such as render targets, images that were produced from previous subpasses, etc.
Fields§
§format: Option<Format>
Format of this attachment.
In the most cases format
is not None
. It should be only used for
creating dummy renderpasses, which are used as placeholder for compatible
renderpasses.
samples: NumSamples
Number of samples to use when loading from this attachment.
If greater than 1, multisampling will take effect.
ops: AttachmentOps
Load and store operations of the attachment.
stencil_ops: AttachmentOps
Load and store operations of the stencil aspect, if any.
layouts: Range<AttachmentLayout>
Initial and final image layouts of the renderpass.
Implementations§
Source§impl Attachment
impl Attachment
Sourcepub fn has_clears(&self) -> bool
pub fn has_clears(&self) -> bool
Returns true if this attachment has some clear operations.
Useful when starting a render pass, since there has to be a clear value provided.
Trait Implementations§
Source§impl Clone for Attachment
impl Clone for Attachment
Source§fn clone(&self) -> Attachment
fn clone(&self) -> Attachment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Attachment
impl Debug for Attachment
Source§impl Hash for Attachment
impl Hash for Attachment
Source§impl PartialEq for Attachment
impl PartialEq for Attachment
impl StructuralPartialEq for Attachment
Auto Trait Implementations§
impl Freeze for Attachment
impl RefUnwindSafe for Attachment
impl Send for Attachment
impl Sync for Attachment
impl Unpin for Attachment
impl UnwindSafe for Attachment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more