[][src]Struct ohm::framegraph::FrameGraph

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

Graph containing a "recipe" with dependencies for rendering the next frame

Methods

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

pub fn new(factory: Factory<B>) -> FrameGraph<B>[src]

Create a new frame graph encapsulating the specified Factory.

pub fn plan() -> FrameGraphPlan<B>[src]

Create a new frame graph plan. Does the same thing as FrameGraphPlan::new does.

pub fn run(&mut self) -> Fallible<()>[src]

Execute the frame graph.

Records commands from every node and submit command buffers to the queue (currently only a single queue is used), putting semaphores where needed.

The order of submitted command buffers is not defined, however this shouldn't matter when the nodes have correct dependencies.

Trait Implementations

impl<B: Backend> Drop for FrameGraph<B>[src]

Auto Trait Implementations

impl<B> !Send for FrameGraph<B>

impl<B> !Sync for FrameGraph<B>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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 for T where
    T: ?Sized
[src]

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

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

impl<T> Supports for T[src]