#[repr(C)]pub struct SubmitInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub wait_semaphore_count: u32,
pub p_wait_semaphores: *const Semaphore,
pub p_wait_dst_stage_mask: *const PipelineStageFlags,
pub command_buffer_count: u32,
pub p_command_buffers: *const CommandBuffer,
pub signal_semaphore_count: u32,
pub p_signal_semaphores: *const Semaphore,
}Expand description
VkSubmitInfo
Provided by VK_BASE_VERSION_1_0.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SUBMIT_INFO.
p_next: *const c_voidOptional, may be null.
wait_semaphore_count: u32Length of p_wait_dst_stage_mask.
p_wait_semaphores: *const Semaphore§p_wait_dst_stage_mask: *const PipelineStageFlagsOptional, may be null.
command_buffer_count: u32Length of p_command_buffers.
p_command_buffers: *const CommandBuffer§signal_semaphore_count: u32Length of p_signal_semaphores.
p_signal_semaphores: *const SemaphoreImplementations§
Source§impl SubmitInfo
impl SubmitInfo
Sourcepub fn builder<'a>() -> SubmitInfoBuilder<'a>
pub fn builder<'a>() -> SubmitInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for SubmitInfo
impl Clone for SubmitInfo
Source§fn clone(&self) -> SubmitInfo
fn clone(&self) -> SubmitInfo
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 Debug for SubmitInfo
impl Debug for SubmitInfo
Source§impl Default for SubmitInfo
impl Default for SubmitInfo
impl Copy for SubmitInfo
Auto Trait Implementations§
impl Freeze for SubmitInfo
impl RefUnwindSafe for SubmitInfo
impl !Send for SubmitInfo
impl !Sync for SubmitInfo
impl Unpin for SubmitInfo
impl UnsafeUnpin for SubmitInfo
impl UnwindSafe for SubmitInfo
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