shdrlib 0.1.2

A three-tiered Vulkan shader compilation and rendering framework built in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Helper utilities module
//
// Provides convenience functions for common EX tier operations.

pub mod buffer;
pub mod descriptor;
pub mod image;

pub use buffer::*;
pub use descriptor::*;
pub use image::*;