1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//! A mid-level framework for rendering that provides tools for resource lifetime management,
//! descriptor set management, materials, renderpass management, and draw call dispatching

mod resources;
pub use resources::*;

pub mod upload;

pub mod graph;

pub mod render_features;

pub mod visibility;

pub use rafx_api::RafxResult;

mod shaders;

pub const MAX_FRAMES_IN_FLIGHT: usize = 2;