#[repr(C)]pub struct RenderingInputAttachmentIndexInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub color_attachment_count: u32,
pub p_color_attachment_input_indices: *const u32,
pub p_depth_input_attachment_index: *const u32,
pub p_stencil_input_attachment_index: *const u32,
}Expand description
VkRenderingInputAttachmentIndexInfo
Provided by VK_GRAPHICS_VERSION_1_4.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_RENDERING_INPUT_ATTACHMENT_INDEX_INFO.
p_next: *const c_voidOptional, may be null.
color_attachment_count: u32Length of p_color_attachment_input_indices.
p_color_attachment_input_indices: *const u32Optional, may be null.
p_depth_input_attachment_index: *const u32Optional, may be null.
p_stencil_input_attachment_index: *const u32Optional, may be null.
Implementations§
Source§impl RenderingInputAttachmentIndexInfo
impl RenderingInputAttachmentIndexInfo
Sourcepub fn builder<'a>() -> RenderingInputAttachmentIndexInfoBuilder<'a>
pub fn builder<'a>() -> RenderingInputAttachmentIndexInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for RenderingInputAttachmentIndexInfo
impl Clone for RenderingInputAttachmentIndexInfo
Source§fn clone(&self) -> RenderingInputAttachmentIndexInfo
fn clone(&self) -> RenderingInputAttachmentIndexInfo
Returns a duplicate 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 moreimpl Copy for RenderingInputAttachmentIndexInfo
impl ExtendsCommandBufferInheritanceInfo for RenderingInputAttachmentIndexInfo
impl ExtendsGraphicsPipelineCreateInfo for RenderingInputAttachmentIndexInfo
Auto Trait Implementations§
impl Freeze for RenderingInputAttachmentIndexInfo
impl RefUnwindSafe for RenderingInputAttachmentIndexInfo
impl !Send for RenderingInputAttachmentIndexInfo
impl !Sync for RenderingInputAttachmentIndexInfo
impl Unpin for RenderingInputAttachmentIndexInfo
impl UnsafeUnpin for RenderingInputAttachmentIndexInfo
impl UnwindSafe for RenderingInputAttachmentIndexInfo
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