[][src]Struct gfx_hal::pass::Attachment

pub struct Attachment {
    pub format: Option<Format>,
    pub samples: NumSamples,
    pub ops: AttachmentOps,
    pub stencil_ops: AttachmentOps,
    pub layouts: Range<AttachmentLayout>,
}

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>

Attachment format

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.

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.

Methods

impl Attachment[src]

pub fn has_clears(&self) -> bool[src]

Returns true if this attachment has some clear operations. This is useful when starting a render pass, since there has to be a clear value provided.

Trait Implementations

impl PartialEq<Attachment> for Attachment[src]

impl Clone for Attachment[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Attachment[src]

impl Hash for Attachment[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Attachment

impl Sync for Attachment

Blanket Implementations

impl<T> Supports<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]