Type Alias RenderingAttachmentInfoKHR

Source
pub type RenderingAttachmentInfoKHR = RenderingAttachmentInfo;

Aliased Type§

struct RenderingAttachmentInfoKHR {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub image_view: ImageView,
    pub image_layout: ImageLayout,
    pub resolve_mode: ResolveModeFlags,
    pub resolve_image_view: ImageView,
    pub resolve_image_layout: ImageLayout,
    pub load_op: AttachmentLoadOp,
    pub store_op: AttachmentStoreOp,
    pub clear_value: ClearValue,
}

Fields§

§s_type: StructureType§p_next: *const c_void§image_view: ImageView§image_layout: ImageLayout§resolve_mode: ResolveModeFlags§resolve_image_view: ImageView§resolve_image_layout: ImageLayout§load_op: AttachmentLoadOp§store_op: AttachmentStoreOp§clear_value: ClearValue

Implementations

Trait Implementations

Source§

impl Clone for RenderingAttachmentInfo

Source§

fn clone(&self) -> RenderingAttachmentInfo

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for RenderingAttachmentInfo

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Copy for RenderingAttachmentInfo