Struct ash::vk::SemaphoreWaitInfoBuilder
source · #[repr(transparent)]pub struct SemaphoreWaitInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SemaphoreWaitInfoBuilder<'a>
impl<'a> SemaphoreWaitInfoBuilder<'a>
pub fn flags(self, flags: SemaphoreWaitFlags) -> Self
pub fn semaphores(self, semaphores: &'a [Semaphore]) -> Self
pub fn values(self, values: &'a [u64]) -> Self
sourcepub fn build(self) -> SemaphoreWaitInfo
pub fn build(self) -> SemaphoreWaitInfo
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.