CommandEncoder

Trait CommandEncoder 

Source
pub trait CommandEncoder {
    type Texture: Send + Sync + Clone + Copy + Debug;
    type Frame: Send + Sync + Debug;

    // Required methods
    fn start(&mut self);
    fn init_texture(&mut self, texture: Self::Texture);
    fn present(&mut self, frame: Self::Frame);
    fn timings(&self) -> &Timings;
}

Required Associated Types§

Required Methods§

Source

fn start(&mut self)

Source

fn init_texture(&mut self, texture: Self::Texture)

Source

fn present(&mut self, frame: Self::Frame)

Source

fn timings(&self) -> &Timings

Implementors§