pub type RenderPassMultiviewCreateInfoKHR<'a> = RenderPassMultiviewCreateInfo<'a>;
Aliased Type§
struct RenderPassMultiviewCreateInfoKHR<'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 ()>,
}
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 more