Struct rafx_framework::ResourceDropSink[][src]

pub struct ResourceDropSink<T> { /* fields omitted */ }

This handles waiting for N frames to pass before dropping the resource.

Implementations

impl<T> ResourceDropSink<T>[src]

pub fn new(max_in_flight_frames: u32) -> Self[src]

Create a drop sink that will destroy resources after N frames. Keep in mind that if for example you want to push a single resource per frame, up to N+1 resources will exist in the sink. If max_in_flight_frames is 2, then you would have a resource that has likely not been submitted to the GPU yet, plus a resource per the N frames that have been submitted

pub fn retire(&mut self, resource: T)[src]

Schedule the resource to drop after we complete N frames

pub fn on_frame_complete(&mut self) -> RafxResult<()>[src]

Call when we are ready to drop another set of resources, most likely when a frame is presented or a new frame begins

pub fn destroy(&mut self) -> RafxResult<()>[src]

Immediately destroy everything. We assume the device is idle and nothing is in flight. Calling this function when the device is not idle could result in a deadlock

Trait Implementations

impl<T> Drop for ResourceDropSink<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ResourceDropSink<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for ResourceDropSink<T> where
    T: Send
[src]

impl<T> Sync for ResourceDropSink<T> where
    T: Sync
[src]

impl<T> Unpin for ResourceDropSink<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for ResourceDropSink<T> where
    T: UnwindSafe
[src]

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Resource for T where
    T: Downcast + Send + Sync
[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.