pub trait DeviceExtensions {
    // Required methods
    fn simple_encoder(&self, label: &str) -> CommandEncoder;
    fn simple_bind_group(
        &self,
        label: &str,
        texture: &Texture,
        layout: &BindGroupLayout
    ) -> BindGroup;
}

Required Methods§

source

fn simple_encoder(&self, label: &str) -> CommandEncoder

source

fn simple_bind_group( &self, label: &str, texture: &Texture, layout: &BindGroupLayout ) -> BindGroup

Implementations on Foreign Types§

source§

impl DeviceExtensions for Device

source§

fn simple_encoder(&self, label: &str) -> CommandEncoder

source§

fn simple_bind_group( &self, label: &str, texture: &Texture, layout: &BindGroupLayout ) -> BindGroup

Implementors§