iced/wgpu/src/image/null.rs
2024-04-07 14:06:52 +02:00

10 lines
170 B
Rust

pub use crate::graphics::Image;
#[derive(Debug, Default)]
pub struct Batch;
impl Batch {
pub fn push(&mut self, _image: Image) {}
pub fn clear(&mut self) {}
}