iced-yoda/wgpu/src/image/null.rs

11 lines
163 B
Rust
Raw Normal View History

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