Fix missing feature flags in graphics::image

This commit is contained in:
Héctor Ramón Jiménez 2025-10-28 21:31:15 +01:00
parent 867fe819c0
commit 74c8641e2c
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 5 additions and 4 deletions

View file

@ -1,13 +1,12 @@
use crate::core::Size;
use crate::core::image;
use crate::graphics;
use crate::graphics::image::image_rs;
use crate::image::atlas::{self, Atlas};
use rustc_hash::{FxHashMap, FxHashSet};
use std::sync::{Arc, Weak};
pub type Image = image_rs::ImageBuffer<image_rs::Rgba<u8>, image::Bytes>;
pub type Image = graphics::image::Buffer;
/// Entry in cache corresponding to an image handle
#[derive(Debug)]