pub struct SemaphoreSubmitInfo<'s>(/* private fields */);
Available on crate feature
VK_KHR_synchronization2
only.Implementations§
Source§impl<'s> SemaphoreSubmitInfo<'s>
impl<'s> SemaphoreSubmitInfo<'s>
pub fn new( semaphore: &'s (impl VkHandle<Handle = VkSemaphore> + ?Sized), ) -> Self
pub const fn with_value(self, value: u64) -> Self
pub const fn with_on_stage(self, stage_mask: VkPipelineStageFlags2KHR) -> Self
pub const fn on_top_of_pipe(self) -> Self
pub const fn on_draw_indirect(self) -> Self
pub const fn on_vertex_input(self) -> Self
pub const fn on_vertex_shader(self) -> Self
pub const fn on_tessellation_control_shader(self) -> Self
pub const fn on_tessellation_evaluation_shader(self) -> Self
pub const fn on_geometry_shader(self) -> Self
pub const fn on_fragment_shader(self) -> Self
pub const fn on_early_fragment_tests(self) -> Self
pub const fn on_late_fragment_tests(self) -> Self
pub const fn on_color_attachment_output(self) -> Self
pub const fn on_compute_shader(self) -> Self
pub const fn on_any_transfer(self) -> Self
pub const fn on_bottom_of_pipe(self) -> Self
pub const fn on_host(self) -> Self
pub const fn on_any_graphics(self) -> Self
pub const fn on_any_command(self) -> Self
pub const fn on_copy(self) -> Self
pub const fn on_resolve(self) -> Self
pub const fn on_blit(self) -> Self
pub const fn on_clear(self) -> Self
pub const fn on_index_input(self) -> Self
pub const fn on_vertex_attribute_input(self) -> Self
pub const fn on_pre_rasterization_shaders(self) -> Self
Auto Trait Implementations§
impl<'s> Freeze for SemaphoreSubmitInfo<'s>
impl<'s> !RefUnwindSafe for SemaphoreSubmitInfo<'s>
impl<'s> !Send for SemaphoreSubmitInfo<'s>
impl<'s> !Sync for SemaphoreSubmitInfo<'s>
impl<'s> Unpin for SemaphoreSubmitInfo<'s>
impl<'s> !UnwindSafe for SemaphoreSubmitInfo<'s>
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