TextureFormatPixelInfo

Trait TextureFormatPixelInfo 

Source
pub trait TextureFormatPixelInfo {
    // Required method
    fn pixel_size(&self) -> Result<usize, TextureAccessError>;
}
Expand description

Extends the wgpu TextureFormat with information about the pixel.

Required Methods§

Source

fn pixel_size(&self) -> Result<usize, TextureAccessError>

Returns the size of a pixel in bytes of the format. error with TextureAccessError::UnsupportedTextureFormat if the format is compressed.

Implementors§