tridify-rs 0.2.2

Fast wgpu render framework that aims to simplify rendering pipelines. Currently under heavy development.
Documentation
mod binders;
mod brush;
mod buffers;

#[cfg(feature = "egui")]
mod egui;

mod gpu_buffer;
mod graphics;
mod render_pass;
mod sampler;
mod texture;
mod vertex;

#[cfg(feature = "egui")]
pub use self::egui::*;

pub use binders::*;
pub use brush::*;
pub use buffers::*;
pub use gpu_buffer::*;
pub use graphics::*;
pub use render_pass::*;
pub use sampler::*;
pub use texture::*;
pub use vertex::*;