1
2
3
4
5
6
7
8
mod resources;
pub use resources::*;

pub mod graph;

pub type RafxResult<T> = rafx_api::RafxResult<T>;

pub const MAX_FRAMES_IN_FLIGHT: usize = 2;