pub trait CommandEncoderExtensions {
    // Required method
    fn simple_render_pass<'a>(
        &'a mut self,
        label: &str,
        clear_color: Option<Color>,
        view: &'a TextureView
    ) -> RenderPass<'_>;
}

Required Methods§

source

fn simple_render_pass<'a>( &'a mut self, label: &str, clear_color: Option<Color>, view: &'a TextureView ) -> RenderPass<'_>

Implementations on Foreign Types§

source§

impl CommandEncoderExtensions for CommandEncoder

source§

fn simple_render_pass<'a>( &'a mut self, label: &str, clear_color: Option<Color>, view: &'a TextureView ) -> RenderPass<'_>

Implementors§