Struct ash::vk::RenderingAttachmentInfo
source · #[repr(C)]pub struct RenderingAttachmentInfo {
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,
}Expand description
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: ClearValueImplementations§
source§impl RenderingAttachmentInfo
impl RenderingAttachmentInfo
pub fn builder<'a>() -> RenderingAttachmentInfoBuilder<'a>
Trait Implementations§
source§impl Clone for RenderingAttachmentInfo
impl Clone for RenderingAttachmentInfo
source§fn clone(&self) -> RenderingAttachmentInfo
fn clone(&self) -> RenderingAttachmentInfo
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 more