dear-imgui-rs 0.12.0

High-level Rust bindings to Dear ImGui v1.92.7 with docking, WGPU/GL backends, and extensions (ImPlot/ImPlot3D, ImNodes, ImGuizmo, file browser, reflection-based UI)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Rendering system for Dear ImGui
//!
//! This module provides the core rendering functionality, including draw data
//! management and renderer abstractions.

pub mod draw_data;
pub mod renderer;
pub mod snapshot;

// Re-export commonly used types
pub use draw_data::*;
pub use renderer::*;
pub use snapshot::*;