[][src]Struct rendy_graph::GraphContext

pub struct GraphContext<B: Backend> {
    pub frames_in_flight: u32,
    // some fields omitted
}

Graphics context contains all transient resources managed by graph.

Fields

frames_in_flight: u32

Number of potential frames in flight

Methods

impl<B: Backend> GraphContext<B>[src]

pub fn get_image(&self, id: ImageId) -> Option<&Handle<Image<B>>>[src]

Get reference to transient image by id.

pub fn get_image_with_clear(
    &self,
    id: ImageId
) -> Option<(&Handle<Image<B>>, Option<ClearValue>)>
[src]

Get reference to transient image and clear value by id.

pub fn get_buffer(&self, id: BufferId) -> Option<&Handle<Buffer<B>>>[src]

Get reference to transient buffer by id.

Trait Implementations

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

Auto Trait Implementations

impl<B> Send for GraphContext<B> where
    <B as Backend>::Buffer: Send + Sync,
    <B as Backend>::Image: Send + Sync

impl<B> Sync for GraphContext<B> where
    <B as Backend>::Buffer: Send + Sync,
    <B as Backend>::Image: Send + Sync

impl<B> Unpin for GraphContext<B>

impl<B> UnwindSafe for GraphContext<B> where
    <B as Backend>::Buffer: RefUnwindSafe,
    <B as Backend>::Image: RefUnwindSafe,
    <B as Backend>::Memory: RefUnwindSafe

impl<B> RefUnwindSafe for GraphContext<B> where
    <B as Backend>::Buffer: RefUnwindSafe,
    <B as Backend>::Image: RefUnwindSafe,
    <B as Backend>::Memory: 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]