dear_imgui/render/
mod.rs

1//! Rendering system for Dear ImGui
2//!
3//! This module provides the core rendering functionality, including draw data
4//! management and renderer abstractions.
5
6pub mod draw_data;
7pub mod renderer;
8
9// Re-export commonly used types
10pub use draw_data::*;
11pub use renderer::*;