rafx-framework 0.0.16

Rendering framework built on an extensible asset pipeline
Documentation
//! 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;