Type Alias rerun::external::image::GrayAlphaImage

pub type GrayAlphaImage = ImageBuffer<LumaA<u8>, Vec<u8>>;
Expand description

Sendable grayscale + alpha channel image buffer

Aliased Type§

struct GrayAlphaImage {
    width: u32,
    height: u32,
    _phantom: PhantomData<LumaA<u8>>,
    data: Vec<u8>,
}

Fields§

§width: u32§height: u32§_phantom: PhantomData<LumaA<u8>>§data: Vec<u8>