summaryrefslogtreecommitdiffstats
path: root/wgpu/src/image/null.rs
blob: c06d56bee293a4cc9a1c5a73938fb83ead42b7ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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) {}
}