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§
Sourcefn pixel_size(&self) -> Result<usize, TextureAccessError>
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.