#[repr(C)]pub struct RenderPassMultiviewCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub subpass_count: u32,
pub p_view_masks: *const u32,
pub dependency_count: u32,
pub p_view_offsets: *const i32,
pub correlation_mask_count: u32,
pub p_correlation_masks: *const u32,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
subpass_count: u32Length of p_view_masks.
p_view_masks: *const u32§dependency_count: u32Length of p_view_offsets.
p_view_offsets: *const i32§correlation_mask_count: u32Length of p_correlation_masks.
p_correlation_masks: *const u32Implementations§
Source§impl RenderPassMultiviewCreateInfo
impl RenderPassMultiviewCreateInfo
Sourcepub fn builder<'a>() -> RenderPassMultiviewCreateInfoBuilder<'a>
pub fn builder<'a>() -> RenderPassMultiviewCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for RenderPassMultiviewCreateInfo
impl Clone for RenderPassMultiviewCreateInfo
Source§fn clone(&self) -> RenderPassMultiviewCreateInfo
fn clone(&self) -> RenderPassMultiviewCreateInfo
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 moreSource§impl Default for RenderPassMultiviewCreateInfo
impl Default for RenderPassMultiviewCreateInfo
Source§fn default() -> RenderPassMultiviewCreateInfo
fn default() -> RenderPassMultiviewCreateInfo
Returns the “default value” for a type. Read more
impl Copy for RenderPassMultiviewCreateInfo
impl ExtendsRenderPassCreateInfo for RenderPassMultiviewCreateInfo
Auto Trait Implementations§
impl Freeze for RenderPassMultiviewCreateInfo
impl RefUnwindSafe for RenderPassMultiviewCreateInfo
impl !Send for RenderPassMultiviewCreateInfo
impl !Sync for RenderPassMultiviewCreateInfo
impl Unpin for RenderPassMultiviewCreateInfo
impl UnsafeUnpin for RenderPassMultiviewCreateInfo
impl UnwindSafe for RenderPassMultiviewCreateInfo
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