shdrlib 0.1.5

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
12
13
14
15
16
17
// Helper utilities module
//
// Provides convenience functions for common EX tier operations.

pub mod buffer;
pub mod descriptor;
pub mod error_context;
pub mod error_format;
pub mod image;
pub mod vk_result;

pub use buffer::*;
pub use descriptor::*;
pub use error_context::*;
pub use error_format::*;
pub use image::*;
pub use vk_result::*;