Add image format options to reduce code bloat, fixes #376

This commit is contained in:
Greg V 2020-06-05 21:18:22 +03:00 committed by Héctor Ramón Jiménez
parent 9f5c2eb0c4
commit 8f126c212b
8 changed files with 39 additions and 25 deletions

View file

@ -10,7 +10,7 @@ pub enum Entry {
}
impl Entry {
#[cfg(feature = "image")]
#[cfg(feature = "image_rs")]
pub fn size(&self) -> (u32, u32) {
match self {
Entry::Contiguous(allocation) => allocation.size(),