[][src]Struct amethyst_rendy::bundle::TargetPlanContext

pub struct TargetPlanContext<'a, B: Backend> { /* fields omitted */ }

A planning context focused on specific render target.

Methods

impl<'a, B: Backend> TargetPlanContext<'a, B>[src]

pub fn add(
    &mut self,
    order: impl Into<i32>,
    action: impl IntoAction<B>
) -> Result<(), Error>
[src]

Add new action to render target in defined order.

pub fn colors(&self) -> usize[src]

Get number of color outputs of current render target.

pub fn depth(&self) -> bool[src]

Check if current render target has a depth output.

pub fn get_image(&mut self, image: TargetImage) -> Result<ImageId, Error>[src]

Retrieve an image produced by other render target.

Results in an error if such image doesn't exist or retreiving it would result in a dependency cycle.

pub fn try_get_image(
    &mut self,
    image: TargetImage
) -> Result<Option<ImageId>, Error>
[src]

Retrieve an image produced by other render target. Returns None when such image isn't registered.

Results in an error if retreiving it would result in a dependency cycle.

pub fn add_dep(&mut self, node: NodeId)[src]

Add explicit dependency on another node.

This is done automatically when you use get_image.

pub fn graph(&mut self) -> &mut GraphBuilder<B, World>[src]

Access underlying rendy's GraphBuilder directly. This is useful for adding custom rendering nodes that are not just standard graphics render passes, e.g. for compute dispatch.

pub fn target_metadata(&self, target: Target) -> Option<TargetMetadata>[src]

Retrieve render target metadata, e.g. size.

pub fn get_node(&mut self, target: Target) -> Result<NodeId, Error>[src]

Access computed NodeId of render target.

Trait Implementations

impl<'a, B: Debug + Backend> Debug for TargetPlanContext<'a, B>[src]

Auto Trait Implementations

impl<'a, B> Unpin for TargetPlanContext<'a, B>

impl<'a, B> !Sync for TargetPlanContext<'a, B>

impl<'a, B> !Send for TargetPlanContext<'a, B>

impl<'a, B> !UnwindSafe for TargetPlanContext<'a, B>

impl<'a, B> !RefUnwindSafe for TargetPlanContext<'a, B>

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> Any for T where
    T: Any
[src]