easy_imgui_window/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*!
* This crate makes it easy to build applications with Dear ImGui as their main GUI.
*
* # Features
*  * `clipboard` (default): clipboard integration, via the `arboard` crate.
*  * `freetype`: use `libfreetype` for TTF font loading. It requires a precompiled native FreeType
*    shared library.
*/
pub mod conv;
mod window;

pub use easy_imgui;
pub use easy_imgui_renderer;
pub use easy_imgui_sys;
pub use glutin;
pub use window::*;
pub use winit;