blob: 4b06bd951d556b82e2d9d1e049f12716a4979d1c (
plain) (
tree)
|  |  | use crate::core::Size;
use crate::graphics::image;
use crate::image::atlas;
#[derive(Debug)]
pub enum Entry {
    Contiguous(atlas::Allocation),
    Fragmented {
        size: Size<u32>,
        fragments: Vec<Fragment>,
    },
}
impl image::storage::Entry for Entry {
    fn size(&self) -> Size<u32> {
        match self {
            Entry::Contiguous(allocation) => allocation.size(),
            Entry::Fragmented { size, .. } => *size,
        }
    }
}
#[derive(Debug)]
pub struct Fragment {
    pub position: (u32, u32),
    pub allocation: atlas::Allocation,
}
 |