rafx_framework/lib.rs
1//! A mid-level framework for rendering that provides tools for resource lifetime management,
2//! descriptor set management, materials, renderpass management, and draw call dispatching
3
4mod resources;
5pub use resources::*;
6
7pub mod upload;
8
9pub mod graph;
10
11pub mod render_features;
12
13pub mod visibility;
14
15pub use rafx_api::RafxResult;
16
17mod shaders;
18
19pub const MAX_FRAMES_IN_FLIGHT: usize = 2;