1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![deny(clippy::all)]

pub mod binding;
pub mod buffers;
pub mod canvas;
pub mod color;
pub mod device;
pub mod error;
pub mod frame;
pub mod pipeline;
pub mod renderable;
pub mod renderer;
pub mod sampler;
pub mod shader;
pub mod texture;
pub mod transform;
pub mod vertex;

pub use figures;
pub use wgpu;

pub mod prelude {
    pub use super::{
        binding::*, buffers::*, canvas::*, color::*, device::*, error::*, frame::*, pipeline::*,
        renderable::*, renderer::*, sampler::*, shader::*, texture::*, transform::*, vertex::*,
        wgpu,
    };
}