[][src]Struct rendy_frame::Frames

pub struct Frames<B: Backend> { /* fields omitted */ }

Timeline of frames, complete, pending and next.

Methods

impl<B> Frames<B> where
    B: Backend, 
[src]

pub fn new() -> Self[src]

Create new Frames instance.

pub fn next(&self) -> Frame[src]

Get next frame reference.

pub fn advance(&mut self, fences: Fences<B>)[src]

Advance to the next frame. All fences of the next frame must be queued.

pub fn complete_upper_bound(&self) -> u64[src]

Get upper bound of complete frames. All frames with index less than result of this function are complete.

pub fn is_complete(&self, frame: Frame) -> bool[src]

Check if given frame is.

pub fn complete(&self, frame: Frame) -> Option<CompleteFrame>[src]

Check if frame with specified index is complete.

pub fn wait_complete(
    &mut self,
    target: Frame,
    factory: &Factory<B>,
    free: impl FnMut(Fences<B>)
) -> CompleteFrame
[src]

Wait for completion of the frames until specified (inclusive) Returns proof.

Parameters

target - frame that must complete. factory - The factory.

Panics

This function will panic if target is greater than or equal to next frame.

pub fn dispose(self, factory: &mut Factory<B>)[src]

Dispose of the Frames

pub fn range(&self) -> FramesRange[src]

Get range of frame indices in this form: upper bound of finished frames .. next frame.

Trait Implementations

impl<B: Debug + Backend> Debug for Frames<B>[src]

Auto Trait Implementations

impl<B> Send for Frames<B> where
    <B as Backend>::Fence: Send

impl<B> Sync for Frames<B> where
    <B as Backend>::Fence: Sync

impl<B> Unpin for Frames<B> where
    <B as Backend>::Fence: Unpin

impl<B> UnwindSafe for Frames<B> where
    <B as Backend>::Fence: RefUnwindSafe + UnwindSafe

impl<B> RefUnwindSafe for Frames<B> where
    <B as Backend>::Fence: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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]