iced_wgpu 0.14.0

A renderer for iced on top of wgpu
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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) {}

    pub fn is_empty(&self) -> bool {
        true
    }

    pub fn append(&mut self, _batch: &mut Self) {}
}