Struct ash::vk::SubmitInfo
source · #[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
Fields§
§s_type: StructureType
§p_next: *const c_void
§wait_semaphore_count: u32
§p_wait_semaphores: *const Semaphore
§p_wait_dst_stage_mask: *const PipelineStageFlags
§command_buffer_count: u32
§p_command_buffers: *const CommandBuffer
§signal_semaphore_count: u32
§p_signal_semaphores: *const Semaphore
Implementations§
source§impl SubmitInfo
impl SubmitInfo
pub fn builder<'a>() -> SubmitInfoBuilder<'a>
Trait Implementations§
source§impl Clone for SubmitInfo
impl Clone for SubmitInfo
source§fn clone(&self) -> SubmitInfo
fn clone(&self) -> SubmitInfo
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