wgpu_noboiler/
lib.rs

1//! # WGPU  NoBoiler
2//!
3//! Builder patter for wgpu and winit
4//!
5//! heavily based on the [WGPU-Tutorial](https://sotrh.github.io/learn-wgpu/)
6
7pub mod app;
8pub mod buffer;
9pub mod render_pass;
10pub mod render_pipeline;
11pub mod vertex;
12
13extern crate core;