Trait gfx::extra::stream::StreamFactory
[−]
[src]
pub trait StreamFactory<R: Resources, C: CommandBuffer<R>>: RenderFactory<R, C> { fn create_stream<O: Output<R>>(&mut self, output: O) -> OwnedStream<R, C, O> { ... } }
A render factory extension that allows creating streams with new renderers.
Provided Methods
fn create_stream<O: Output<R>>(&mut self, output: O) -> OwnedStream<R, C, O>
Create a new stream from a given output.
Implementors
impl<R: Resources, C: CommandBuffer<R>> StreamFactory<R, C> for RenderFactory<R, C>