easygpu 0.0.9

Simple wrapper around wgpu aiming to make some common operations easier
Documentation
#![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 swapchain;
pub mod texture;
pub mod transform;
pub mod vertex;

pub use euclid;
pub use wgpu;

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