Няма описание

Sepehr Taghdisian ef628a0a9d argh, removed redundent defines преди 11 години
examples 46eee0cee4 Tidying up example applications so it looks easier to just grab code преди 11 години
web 900dd3bd0f Update README.md преди 11 години
.gitignore 680a5a9b54 Git ignore imgui.ini files преди 11 години
LICENSE dbd777232a Initial release преди 11 години
README.md d3ad5ce475 Update README.md преди 11 години
imconfig.h a830037eab Default "local only" clipboard handler on non-Windows platforms преди 11 години
imgui.cpp ef628a0a9d argh, removed redundent defines преди 11 години
imgui.h 5240013c90 merge with upstream преди 11 години
libimgui.pro df5a06f119 removed memory pools, they dont apply well преди 11 години
stb_textedit.h dbd777232a Initial release преди 11 години

README.md

ImGui

ImGui is a bloat-free graphical user interface library for C++. It outputs vertex buffers that you can render in your 3D-pipeline enabled application. 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 enable fast iteration and 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.

ImGui is particularly suited to integration in 3D applications, fullscreen applications, embedded applications, games, or any applications on consoles platforms where operating system features are non-standard.

After ImGui is setup in your engine, you can use it like in this example:

screenshot of sample code alongside its output with ImGui

ImGui outputs vertex buffers and simple command-lists that you can render in your application. Because it doesn't know or touch graphics state directly, you can call ImGui commands anywhere in your code (e.g. in the middle of a running algorithm, or in the middle of your own rendering process). Refer to the sample applications in the examples/ folder for instructions on how to integrate ImGui with your existing codebase.

Gallery

screenshot 1 screenshot 2 screenshot 3 screenshot 4

References

The Immediate Mode GUI paradigm may at first appear unusual to some users. This is mainly because "Retained Mode" GUIs have been so widespread and predominant. The following links can give you a better understanding about how Immediate Mode GUIs works.

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.