1
0
Fork 0
wgpu-rs/src/render/mod.rs

6 lines
130 B
Rust
Raw Normal View History

2022-06-21 13:32:23 +02:00
mod pipelines;
2022-06-21 13:42:57 +02:00
pub use pipelines::utils::create_render_pipeline;
2022-06-21 20:10:19 +02:00
pub use pipelines::{GlobalBindLayout, Pipelines};
mod renderer;