Struct ash::vk::PresentInfoKHR
source · #[repr(C)]pub struct PresentInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub wait_semaphore_count: u32,
pub p_wait_semaphores: *const Semaphore,
pub swapchain_count: u32,
pub p_swapchains: *const SwapchainKHR,
pub p_image_indices: *const u32,
pub p_results: *mut Result,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§wait_semaphore_count: u32
§p_wait_semaphores: *const Semaphore
§swapchain_count: u32
§p_swapchains: *const SwapchainKHR
§p_image_indices: *const u32
§p_results: *mut Result
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> PresentInfoKHR<'a>
impl<'a> PresentInfoKHR<'a>
pub fn wait_semaphores(self, wait_semaphores: &'a [Semaphore]) -> Self
pub fn swapchains(self, swapchains: &'a [SwapchainKHR]) -> Self
pub fn image_indices(self, image_indices: &'a [u32]) -> Self
pub fn results(self, results: &'a mut [Result]) -> Self
sourcepub fn push_next<T: ExtendsPresentInfoKHR + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsPresentInfoKHR + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for PresentInfoKHR<'a>
impl<'a> Clone for PresentInfoKHR<'a>
source§fn clone(&self) -> PresentInfoKHR<'a>
fn clone(&self) -> PresentInfoKHR<'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 PresentInfoKHR<'a>
impl<'a> Debug for PresentInfoKHR<'a>
source§impl Default for PresentInfoKHR<'_>
impl Default for PresentInfoKHR<'_>
source§impl<'a> TaggedStructure for PresentInfoKHR<'a>
impl<'a> TaggedStructure for PresentInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::PRESENT_INFO_KHR
impl<'a> Copy for PresentInfoKHR<'a>
impl Send for PresentInfoKHR<'_>
impl Sync for PresentInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for PresentInfoKHR<'a>
impl<'a> RefUnwindSafe for PresentInfoKHR<'a>
impl<'a> Unpin for PresentInfoKHR<'a>
impl<'a> UnwindSafe for PresentInfoKHR<'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