est_render/lib.rs
1//! Easy to use winit, softbuffer & wgpu abstractions
2
3/// Font rendering and text layout utilities
4pub mod font;
5/// GPU graphics rendering abstractions
6pub mod gpu;
7/// Mathematical utilities and types
8pub mod math;
9/// Predefined types and traits for easy access
10pub mod prelude;
11/// Runner for managing the main event loop and window lifecycle
12pub mod runner;
13/// Software rendering utilities
14#[cfg(feature = "software")]
15pub mod software;
16/// Utility functions and types for common tasks
17pub mod utils;
18/// Window management
19pub mod window;
20pub mod input;