#[repr(C)]pub struct RenderingAttachmentInfoKHR {
pub s_type: StructureType,
pub 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: StructureTypenext: *const c_voidimage_view: ImageViewimage_layout: ImageLayoutresolve_mode: ResolveModeFlagsresolve_image_view: ImageViewresolve_image_layout: ImageLayoutload_op: AttachmentLoadOpstore_op: AttachmentStoreOpclear_value: ClearValueTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RenderingAttachmentInfoKHR
impl !Send for RenderingAttachmentInfoKHR
impl !Sync for RenderingAttachmentInfoKHR
impl Unpin for RenderingAttachmentInfoKHR
impl UnwindSafe for RenderingAttachmentInfoKHR
Blanket Implementations
Mutably borrows from an owned value. Read more