pub type TileDecodeJob<'i, 'o> = TileDecodeJob<'i, 'o>;Expand description
One full-tile decode request for decode_tiles_into.
Aliased Type§
pub struct TileDecodeJob<'i, 'o> {
pub input: &'i [u8],
pub out: &'o mut [u8],
pub stride: usize,
}Fields§
§input: &'i [u8]Compressed tile bytes.
out: &'o mut [u8]Caller-owned output buffer for this tile.
stride: usizeDistance in bytes between output rows.