Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
Find a file
Sim Dietrich 5e9ecdb2d0 Fix 0.5 pixel offset, only needed for d3d <= 9.
Defaults to 0.0f, which is correct for d3d10+ and ogl
2014-08-10 20:48:26 -07:00
examples Fix 0.5 pixel offset, only needed for d3d <= 9 2014-08-10 20:39:16 -07:00
web Screeenshots for web 2014-08-10 23:05:28 +01:00
imconfig.h Initial release 2014-08-10 21:58:11 +01:00
imgui.cpp Fix 0.5 pixel offset, only needed for d3d <= 9. 2014-08-10 20:48:26 -07:00
imgui.h Fix 0.5 pixel offset, only needed for d3d <= 9 2014-08-10 20:39:16 -07:00
LICENSE Initial release 2014-08-10 21:58:11 +01:00
README.md Update README.md 2014-08-10 23:15:15 +01:00
stb_textedit.h Initial release 2014-08-10 21:58:11 +01:00

ImGui

ImGui is a bloat-free graphical user interface library for C/C++. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease.

ImGui is designed to allow programmers to create "content creation" or "debug" tools (as opposed to tools for the average end-user). It favors simplicity and thus lacks certain features normally found in more high-level libraries, such as string localisation.

Usage example:

screenshot of sample code alongside its output with ImGui

ImGui output vertex buffer and simple command-list that you can render in application. Refer to the sample applications in the examples/ folder for instructions on how to integrate ImGui within your existing codebase.

screenshot 1 screenshot 2 screenshot 3 screenshot 4

Credits

Developed by Omar Cornut. The library was developed with the support of Media Molecule and first used internally on the game Tearaway.

Embeds proggy_clean font by Tristan Grimmer (also MIT license).

Inspiration, feedback, and testing: Casey Muratori, Atman Binstock, Mikko Mononen, Emmanuel Briney, Stefan Kamoda, Matt Willis. Thanks!

License

ImGui is licensed under the MIT License, see LICENSE for more information.