Trait gfx_app::ApplicationBase
[−]
[src]
pub trait ApplicationBase<R: Resources, C: CommandBuffer<R>> {
fn new<F>(F, Encoder<R, C>, Init<R>) -> Self where F: Factory<R>;
fn render<D>(&mut self, &mut D) where D: Device<Resources=R, CommandBuffer=C>;
}
Required Methods
fn new<F>(F, Encoder<R, C>, Init<R>) -> Self where F: Factory<R>
fn render<D>(&mut self, &mut D) where D: Device<Resources=R, CommandBuffer=C>
Implementors
impl<R, C, A> ApplicationBase<R, C> for Wrap<R, C, A> where R: Resources, C: CommandBuffer<R>, A: Application<R>