[−][src]Struct rendy::frame::Frames
Timeline of frames, complete, pending and next.
Methods
impl<B> Frames<B> where
B: Backend,
[src]
B: Backend,
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]
&mut self,
target: Frame,
factory: &Factory<B>,
free: impl FnMut(Fences)
) -> CompleteFrame where
impl FnMut(Fences): FnMut(SmallVec<[Fence<B>; 8]>),
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
Auto Trait Implementations
impl<B> Unpin for Frames<B> where
<B as Backend>::Fence: Unpin,
<B as Backend>::Fence: Unpin,
impl<B> Sync for Frames<B> where
<B as Backend>::Fence: Sync,
<B as Backend>::Fence: Sync,
impl<B> Send for Frames<B> where
<B as Backend>::Fence: Send,
<B as Backend>::Fence: Send,
impl<B> UnwindSafe for Frames<B> where
<B as Backend>::Fence: RefUnwindSafe + UnwindSafe,
<B as Backend>::Fence: RefUnwindSafe + UnwindSafe,
impl<B> RefUnwindSafe for Frames<B> where
<B as Backend>::Fence: RefUnwindSafe,
<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]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Supports<T> for T
[src]
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<T> Erased for T
[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]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more