open_sesame/render/mod.rs
1//! Rendering pipeline
2//!
3//! Provides composable render passes for the overlay UI.
4
5pub mod context;
6pub mod pipeline;
7pub mod primitives;
8pub mod text;
9
10pub use context::RenderContext;
11pub use pipeline::{RenderPass, RenderPipeline};
12pub use primitives::{Color, rounded_rect};
13pub use text::{FontWeight, TextRenderer};