pub enum Blocks {
ScanLines,
Tiles(Vec2<usize>),
}
Expand description
How the image pixels are split up into separate blocks.
Variants§
ScanLines
The image is divided into scan line blocks. The number of scan lines in a block depends on the compression method.
Tiles(Vec2<usize>)
The image is divided into tile blocks. Also specifies the size of each tile in the image and whether this image contains multiple resolution levels.
The inner Vec2
describes the size of each tile.
Stays the same number of pixels across all levels.
Trait Implementations§
source§impl PartialEq for Blocks
impl PartialEq for Blocks
impl Copy for Blocks
impl Eq for Blocks
impl StructuralPartialEq for Blocks
Auto Trait Implementations§
impl Freeze for Blocks
impl RefUnwindSafe for Blocks
impl Send for Blocks
impl Sync for Blocks
impl Unpin for Blocks
impl UnwindSafe for Blocks
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more