[−][src]Struct rendy::graph::render::SimpleRenderGroup
Render group that consist of simple graphics pipeline.
Trait Implementations
impl<B, P> Debug for SimpleRenderGroup<B, P> where
B: Debug + Backend,
P: Debug,
<B as Backend>::PipelineLayout: Debug,
<B as Backend>::GraphicsPipeline: Debug,
[src]
B: Debug + Backend,
P: Debug,
<B as Backend>::PipelineLayout: Debug,
<B as Backend>::GraphicsPipeline: Debug,
impl<B, T, P> RenderGroup<B, T> for SimpleRenderGroup<B, P> where
B: Backend,
P: SimpleGraphicsPipeline<B, T>,
T: ?Sized,
[src]
B: Backend,
P: SimpleGraphicsPipeline<B, T>,
T: ?Sized,
fn prepare(
&mut self,
factory: &Factory<B>,
queue: QueueId,
index: usize,
_subpass: Subpass<B>,
aux: &T
) -> PrepareResult
[src]
&mut self,
factory: &Factory<B>,
queue: QueueId,
index: usize,
_subpass: Subpass<B>,
aux: &T
) -> PrepareResult
fn draw_inline(
&mut self,
encoder: RenderPassEncoder<B>,
index: usize,
_subpass: Subpass<B>,
aux: &T
)
[src]
&mut self,
encoder: RenderPassEncoder<B>,
index: usize,
_subpass: Subpass<B>,
aux: &T
)
fn dispose(
self: Box<SimpleRenderGroup<B, P>>,
factory: &mut Factory<B>,
aux: &T
)
[src]
self: Box<SimpleRenderGroup<B, P>>,
factory: &mut Factory<B>,
aux: &T
)
Auto Trait Implementations
impl<B, P> Unpin for SimpleRenderGroup<B, P> where
P: Unpin,
<B as Backend>::GraphicsPipeline: Unpin,
<B as Backend>::PipelineLayout: Unpin,
P: Unpin,
<B as Backend>::GraphicsPipeline: Unpin,
<B as Backend>::PipelineLayout: Unpin,
impl<B, P> Sync for SimpleRenderGroup<B, P> where
P: Sync,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::GraphicsPipeline: Sync,
<B as Backend>::PipelineLayout: Sync,
P: Sync,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::GraphicsPipeline: Sync,
<B as Backend>::PipelineLayout: Sync,
impl<B, P> Send for SimpleRenderGroup<B, P> where
P: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::PipelineLayout: Send,
P: Send,
<B as Backend>::DescriptorSetLayout: Send + Sync,
<B as Backend>::GraphicsPipeline: Send,
<B as Backend>::PipelineLayout: Send,
impl<B, P> UnwindSafe for SimpleRenderGroup<B, P> where
P: UnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
<B as Backend>::GraphicsPipeline: UnwindSafe,
<B as Backend>::PipelineLayout: UnwindSafe,
P: UnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
<B as Backend>::GraphicsPipeline: UnwindSafe,
<B as Backend>::PipelineLayout: UnwindSafe,
impl<B, P> RefUnwindSafe for SimpleRenderGroup<B, P> where
P: RefUnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
<B as Backend>::GraphicsPipeline: RefUnwindSafe,
<B as Backend>::PipelineLayout: RefUnwindSafe,
P: RefUnwindSafe,
<B as Backend>::DescriptorSetLayout: RefUnwindSafe,
<B as Backend>::GraphicsPipeline: RefUnwindSafe,
<B as Backend>::PipelineLayout: RefUnwindSafe,
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<T> Supports<T> for T
[src]
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> Erased for T
[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]
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