[−][src]Struct amethyst_rendy::bundle::TargetPlanContext
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]
&mut self,
order: impl Into<i32>,
action: impl IntoAction<B>
) -> Result<(), Error>
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]
&mut self,
image: TargetImage
) -> Result<Option<ImageId>, Error>
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]
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<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
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> 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]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
[src]
fn is_in_subset(&self) -> bool
[src]
unsafe fn to_subset_unchecked(&self) -> SS
[src]
fn from_subset(element: &SS) -> SP
[src]
impl<T> Any for T where
T: Any,
[src]
T: Any,