Struct ash::vk::RenderPassMultiviewCreateInfo
source · #[repr(C)]pub struct RenderPassMultiviewCreateInfo<'a> {
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,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§subpass_count: u32
§p_view_masks: *const u32
§dependency_count: u32
§p_view_offsets: *const i32
§correlation_mask_count: u32
§p_correlation_masks: *const u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> RenderPassMultiviewCreateInfo<'a>
impl<'a> RenderPassMultiviewCreateInfo<'a>
pub fn view_masks(self, view_masks: &'a [u32]) -> Self
pub fn view_offsets(self, view_offsets: &'a [i32]) -> Self
pub fn correlation_masks(self, correlation_masks: &'a [u32]) -> Self
Trait Implementations§
source§impl<'a> Clone for RenderPassMultiviewCreateInfo<'a>
impl<'a> Clone for RenderPassMultiviewCreateInfo<'a>
source§fn clone(&self) -> RenderPassMultiviewCreateInfo<'a>
fn clone(&self) -> RenderPassMultiviewCreateInfo<'a>
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 moresource§impl<'a> Debug for RenderPassMultiviewCreateInfo<'a>
impl<'a> Debug for RenderPassMultiviewCreateInfo<'a>
source§impl Default for RenderPassMultiviewCreateInfo<'_>
impl Default for RenderPassMultiviewCreateInfo<'_>
source§impl<'a> TaggedStructure for RenderPassMultiviewCreateInfo<'a>
impl<'a> TaggedStructure for RenderPassMultiviewCreateInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::RENDER_PASS_MULTIVIEW_CREATE_INFO
impl<'a> Copy for RenderPassMultiviewCreateInfo<'a>
impl ExtendsRenderPassCreateInfo for RenderPassMultiviewCreateInfo<'_>
impl Send for RenderPassMultiviewCreateInfo<'_>
impl Sync for RenderPassMultiviewCreateInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for RenderPassMultiviewCreateInfo<'a>
impl<'a> RefUnwindSafe for RenderPassMultiviewCreateInfo<'a>
impl<'a> Unpin for RenderPassMultiviewCreateInfo<'a>
impl<'a> UnwindSafe for RenderPassMultiviewCreateInfo<'a>
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