[][src]Struct amethyst_rendy::rendy::frame::Frames

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

Timeline of frames, complete, pending and next.

Methods

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

pub fn new() -> Frames<B>[src]

Create new Frames instance.

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

Get next frame reference.

pub fn advance(&mut self, fences: SmallVec<[Fence<B>; 8]>)[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<impl FnMut(Fences)>(
    &mut self,
    target: Frame,
    factory: &Factory<B>,
    free: impl FnMut(Fences)
) -> CompleteFrame where
    impl FnMut(Fences): FnMut(SmallVec<[Fence<B>; 8]>), 
[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 for Frames<B> where
    B: Debug + Backend
[src]

Auto Trait Implementations

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

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

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

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> 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]

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.

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

impl<T> Erased for T[src]

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]