[][src]Struct vulkano::sync::SemaphoreSignalFuture

#[must_use = "Dropping this object will immediately block the thread until the GPU has finished processing the submission"]
pub struct SemaphoreSignalFuture<F> where
    F: GpuFuture
{ /* fields omitted */ }

Represents a semaphore being signaled after a previous event.

Trait Implementations

impl<F> DeviceOwned for SemaphoreSignalFuture<F> where
    F: GpuFuture
[src]

impl<F> GpuFuture for SemaphoreSignalFuture<F> where
    F: GpuFuture
[src]

fn join<F>(self, other: F) -> JoinFuture<Self, F> where
    Self: Sized,
    F: GpuFuture
[src]

Joins this future with another one, representing the moment when both events have happened.

fn then_execute<Cb>(
    self,
    queue: Arc<Queue>,
    command_buffer: Cb
) -> Result<CommandBufferExecFuture<Self, Cb>, CommandBufferExecError> where
    Self: Sized,
    Cb: CommandBuffer + 'static, 
[src]

Executes a command buffer after this future. Read more

fn then_execute_same_queue<Cb>(
    self,
    command_buffer: Cb
) -> Result<CommandBufferExecFuture<Self, Cb>, CommandBufferExecError> where
    Self: Sized,
    Cb: CommandBuffer + 'static, 
[src]

Executes a command buffer after this future, on the same queue as the future. Read more

fn then_signal_semaphore(self) -> SemaphoreSignalFuture<Self> where
    Self: Sized
[src]

Signals a semaphore after this future. Returns another future that represents the signal. Read more

fn then_signal_semaphore_and_flush(
    self
) -> Result<SemaphoreSignalFuture<Self>, FlushError> where
    Self: Sized
[src]

Signals a semaphore after this future and flushes it. Returns another future that represents the moment when the semaphore is signalled. Read more

fn then_signal_fence(self) -> FenceSignalFuture<Self> where
    Self: Sized
[src]

Signals a fence after this future. Returns another future that represents the signal. Read more

fn then_signal_fence_and_flush(
    self
) -> Result<FenceSignalFuture<Self>, FlushError> where
    Self: Sized
[src]

Signals a fence after this future. Returns another future that represents the signal. Read more

fn then_swapchain_present<W>(
    self,
    queue: Arc<Queue>,
    swapchain: Arc<Swapchain<W>>,
    image_index: usize
) -> PresentFuture<Self, W> where
    Self: Sized
[src]

Presents a swapchain image after this future. Read more

fn then_swapchain_present_incremental<W>(
    self,
    queue: Arc<Queue>,
    swapchain: Arc<Swapchain<W>>,
    image_index: usize,
    present_region: PresentRegion
) -> PresentFuture<Self, W> where
    Self: Sized
[src]

Same as then_swapchain_present, except it allows specifying a present region. Read more

impl<F> Drop for SemaphoreSignalFuture<F> where
    F: GpuFuture
[src]

Auto Trait Implementations

impl<F> Send for SemaphoreSignalFuture<F> where
    F: Send

impl<F> Sync for SemaphoreSignalFuture<F> where
    F: Sync

Blanket Implementations

impl<T> DeviceOwned for T where
    T: Deref,
    <T as Deref>::Target: DeviceOwned
[src]

impl<T> Content for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]