#[repr(C)]pub struct RenderingAttachmentLocationInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub color_attachment_count: u32,
pub p_color_attachment_locations: *const u32,
}Expand description
VkRenderingAttachmentLocationInfo
Provided by VK_GRAPHICS_VERSION_1_4.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_RENDERING_ATTACHMENT_LOCATION_INFO.
p_next: *const c_voidOptional, may be null.
color_attachment_count: u32Length of p_color_attachment_locations.
p_color_attachment_locations: *const u32Implementations§
Source§impl RenderingAttachmentLocationInfo
impl RenderingAttachmentLocationInfo
Sourcepub fn builder<'a>() -> RenderingAttachmentLocationInfoBuilder<'a>
pub fn builder<'a>() -> RenderingAttachmentLocationInfoBuilder<'a>
Returns a builder for this struct with sType pre-filled.
Trait Implementations§
Source§impl Clone for RenderingAttachmentLocationInfo
impl Clone for RenderingAttachmentLocationInfo
Source§fn clone(&self) -> RenderingAttachmentLocationInfo
fn clone(&self) -> RenderingAttachmentLocationInfo
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 RenderingAttachmentLocationInfo
impl ExtendsCommandBufferInheritanceInfo for RenderingAttachmentLocationInfo
impl ExtendsGraphicsPipelineCreateInfo for RenderingAttachmentLocationInfo
Auto Trait Implementations§
impl Freeze for RenderingAttachmentLocationInfo
impl RefUnwindSafe for RenderingAttachmentLocationInfo
impl !Send for RenderingAttachmentLocationInfo
impl !Sync for RenderingAttachmentLocationInfo
impl Unpin for RenderingAttachmentLocationInfo
impl UnsafeUnpin for RenderingAttachmentLocationInfo
impl UnwindSafe for RenderingAttachmentLocationInfo
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