libimgui-render-dx12/1.86.0

[brief]

Dear ImGui render backend for DirectX 12

Build Status Static Analysis Status

(This library is available under a free and permissive license, but needs financial support to sustain its continued improvements. In addition to maintenance and stability there are many desirable features yet to be added. If your company is using Dear ImGui, please consider reaching out.)

Businesses: support continued development and maintenance via invoiced technical support, maintenance, sponsoring contracts:   E-mail: contact @ dearimgui dot com

Individuals: support continued development and maintenance here.

Also see Sponsors page.


Dear ImGui is a bloat-free graphical user interface library for C++. It outputs optimized vertex buffers that you can render anytime in your 3D-pipeline enabled application. It is fast, portable, renderer agnostic and self-contained (no external dependencies).

Dear ImGui is designed to enable fast iterations and to empower programmers to create content creation tools and visualization / debug tools (as opposed to UI for the average end-user). It favors simplicity and productivity toward this goal, and lacks certain features normally found in more high-level libraries.

Dear ImGui is particularly suited to integration in games engine (for tooling), real-time 3D applications, fullscreen applications, embedded applications, or any applications on consoles platforms where operating system features are non-standard.

Usage - How it works - Releases & Changelogs - Demo - Integration
Upcoming changes - Gallery - Support, FAQ - How to help - Sponsors - Credits - License
Wiki - Languages & frameworks backends/bindings - Software using Dear ImGui - User quotes

Usage

The core of Dear ImGui is self-contained within a few platform-agnostic files which you can easily compile in your application/engine. They are all the files in the root folder of the repository (imgui*.cpp, imgui*.h).

No specific build process is required. You can add the .cpp files to your existing project.

You will need a backend to integrate Dear ImGui in your app. The backend passes mouse/keyboard/gamepad inputs and variety of settings to Dear ImGui, and is in charge of rendering the resulting vertices.

Backends for a variety of graphics api and rendering platforms are provided in the backends/ folder, along with example applications in the examples/ folder. See the Integration section of this document for details. You may also create your own backend. Anywhere where you can render textured triangles, you can render Dear ImGui.

After Dear ImGui is setup in your application, you can use it from _anywhere_ in your program loop:

Code:

ImGui::Text("Hello, world %d", 123);
if (ImGui::Button("Save"))
    MySaveFunction();
ImGui::InputText("string", buf, IM_ARRAYSIZE(buf));
ImGui::SliderFloat("float", &f, 0.0f, 1.0f);

Result: sample code output (dark) sample code output (light) (settings: Dark style (left), Light style (right) / Font: Roboto-Medium, 16px)

Code:

// Create a window called "My First Tool", with a menu bar.
ImGui::Begin("My First Tool", &my_tool_active, ImGuiWindowFlags_MenuBar);
if (ImGui::BeginMenuBar())
{
    if (ImGui::BeginMenu("File"))
    {
        if (ImGui::MenuItem("Open..", "Ctrl+O")) { /* Do stuff */ }
        if (ImGui::MenuItem("Save", "Ctrl+S"))   { /* Do stuff */ }
        if (ImGui::MenuItem("Close", "Ctrl+W"))  { my_tool_active = false; }
        ImGui::EndMenu();
    }
    ImGui::EndMenuBar();
}

// Edit a color (stored as ~4 floats)
ImGui::ColorEdit4("Color", my_color);

// Plot some values
const float my_values[] = { 0.2f, 0.1f, 1.0f, 0.5f, 0.9f, 2.2f };
ImGui::PlotLines("Frame Times", my_values, IM_ARRAYSIZE(my_values));

// Display contents in a scrolling region
ImGui::TextColored(ImVec4(1,1,0,1), "Important Stuff");
ImGui::BeginChild("Scrolling");
for (int n = 0; n < 50; n++)
    ImGui::Text("%04d: Some text", n);
ImGui::EndChild();
ImGui::End();

Result: sample code output

Dear ImGui allows you to create elaborate tools as well as very short-lived ones. On the extreme side of short-livedness: using the Edit&Continue (hot code reload) feature of modern compilers you can add a few widgets to tweaks variables while your application is running, and remove the code a minute later! Dear ImGui is not just for tweaking values. You can use it to trace a running algorithm by just emitting text commands. You can use it along with your own reflection data to browse your dataset live. You can use it to expose the internals of a subsystem in your engine, to create a logger, an inspection tool, a profiler, a debugger, an entire game making editor/framework, etc.

How it works

Check out the Wiki's About the IMGUI paradigm section if you want to understand the core principles behind the IMGUI paradigm. An IMGUI tries to minimize superfluous state duplication, state synchronization and state retention from the user's point of view. It is less error prone (less code and less bugs) than traditional retained-mode interfaces, and lends itself to create dynamic user interfaces.

Dear ImGui outputs vertex buffers and command lists that you can easily render in your application. The number of draw calls and state changes required to render them is fairly small. Because Dear ImGui doesn't know or touch graphics state directly, you can call its functions 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 Dear ImGui with your existing codebase.

A common misunderstanding is to mistake immediate mode gui for immediate mode rendering, which usually implies hammering your driver/GPU with a bunch of inefficient draw calls and state changes as the gui functions are called. This is NOT what Dear ImGui does. Dear ImGui outputs vertex buffers and a small list of draw calls batches. It never touches your GPU directly. The draw call batches are decently optimal and you can render them later, in your app or even remotely.

Releases & Changelogs

See Releases page. Reading the changelogs is a good way to keep up to date with the things Dear ImGui has to offer, and maybe will give you ideas of some features that you've been ignoring until now!

Demo

Calling the ImGui::ShowDemoWindow() function will create a demo window showcasing variety of features and examples. The code is always available for reference in imgui_demo.cpp.

screenshot demo

You should be able to build the examples from sources (tested on Windows/Mac/Linux). If you don't, let us know! If you want to have a quick look at some Dear ImGui features, you can download Windows binaries of the demo app here:

The demo applications are not DPI aware so expect some blurriness on a 4K screen. For DPI awareness in your application, you can load/reload your font at different scale, and scale your style with style.ScaleAllSizes() (see FAQ).

Integration

On most platforms and when using C++, you should be able to use a combination of the imgui_impl_xxxx backends without modification (e.g. imgui_impl_win32.cpp + imgui_impl_dx11.cpp). If your engine supports multiple platforms, consider using more of the imgui_impl_xxxx files instead of rewriting them: this will be less work for you and you can get Dear ImGui running immediately. You can later decide to rewrite a custom backend using your custom engine functions if you wish so.

Integrating Dear ImGui within your custom engine is a matter of 1) wiring mouse/keyboard/gamepad inputs 2) uploading one texture to your GPU/render engine 3) providing a render function that can bind textures and render textured triangles. The examples/ folder is populated with applications doing just that. If you are an experienced programmer at ease with those concepts, it should take you less than two hours to integrate Dear ImGui in your custom engine. Make sure to spend time reading the FAQ, comments, and some of the examples/ application!

Officially maintained backends/bindings (in repository):

Third-party backends/bindings wiki page:

Useful Extensions/Widgets wiki page:

Also see Wiki for more links and ideas.

Upcoming Changes

Some of the goals for 2021 are:

Gallery

For more user-submitted screenshots of projects using Dear ImGui, check out the Gallery Threads!

For a list of third-party widgets and extensions, check out the Useful Extensions/Widgets wiki page.

Custom engine screenshot game

Custom engine screenshot tool

Tracy Profiler tracy profiler

Support, Frequently Asked Questions (FAQ)

See: Frequently Asked Questions (FAQ) where common questions are answered.

See: Wiki for many links, references, articles.

See: Articles about the IMGUI paradigm to read/learn about the Immediate Mode GUI paradigm.

Getting started? For first-time users having issues compiling/linking/running or issues loading fonts, please use GitHub Discussions.

For other questions, bug reports, requests, feedback, you may post on GitHub Issues. Please read and fill the New Issue template carefully.

Private support is available for paying business customers (E-mail: contact @ dearimgui dot com).

Which version should I get?

We occasionally tag Releases but it is generally safe and recommended to sync to master/latest. The library is fairly stable and regressions tend to be fixed fast when reported.

Advanced users may want to use the docking branch with Multi-Viewport and Docking features. This branch is kept in sync with master regularly.

Who uses Dear ImGui?

See the Quotes, Sponsors, Software using dear imgui Wiki pages for an idea of who is using Dear ImGui. Please add your game/software if you can! Also see the Gallery Threads!

How to help

How can I help?

How can I help financing further development of Dear ImGui?

See Sponsors page.

Sponsors

Ongoing Dear ImGui development is currently financially supported by users and private sponsors:

Platinum-chocolate sponsors

Double-chocolate sponsors

Chocolate sponsors

Salty-caramel sponsors

Please see detailed list of Dear ImGui supporters for past sponsors. From November 2014 to December 2019, ongoing development has also been financially supported by its users on Patreon and through individual donations.

THANK YOU to all past and present supporters for helping to keep this project alive and thriving!

Dear ImGui is using software and services provided free of charge for open source projects:

Credits

Developed by Omar Cornut and every direct or indirect contributors to the GitHub. The early version of this library was developed with the support of Media Molecule and first used internally on the game Tearaway (PS Vita).

Recurring contributors (2020): Omar Cornut @ocornut, Rokas Kupstys @rokups, Ben Carter @ShironekoBen. A large portion of work on automation systems, regression tests and other features are currently unpublished.

Sponsoring, support contracts and other B2B transactions are hosted and handled by Lizardcube.

Omar: "I first discovered the IMGUI paradigm at Q-Games where Atman Binstock had dropped his own simple implementation in the codebase, which I spent quite some time improving and thinking about. It turned out that Atman was exposed to the concept directly by working with Casey. When I moved to Media Molecule I rewrote a new library trying to overcome the flaws and limitations of the first one I've worked with. It became this library and since then I have spent an unreasonable amount of time iterating and improving it."

Embeds ProggyClean.ttf font by Tristan Grimmer (MIT license).

Embeds stb_textedit.h, stb_truetype.h, stb_rect_pack.h by Sean Barrett (public domain).

Inspiration, feedback, and testing for early versions: Casey Muratori, Atman Binstock, Mikko Mononen, Emmanuel Briney, Stefan Kamoda, Anton Mikhailov, Matt Willis. Also thank you to everyone posting feedback, questions and patches on GitHub.

License

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

version 1.86.0
license MIT
repository https://pkg.cppget.org/1/stable
download libimgui-render-dx12-1.86.0.tar.gz
sha256 c443622c459077b40d7399b269a2de71e7ec885bc1420c698a69e35eeabecbde
project imgui
url github.com/ocornut/imgui
doc-url github.com/ocornut/imgui/wiki
src-url github.com/ocornut/imgui
package-url github.com/build2-packaging/imgui
package-email swat.somebug@gmail.com

Depends (1)

libimgui == 1.86.0

Reviews

fail 0
pass 1

Builds

toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10
timestamp 2024-10-30 10:42:55 UTC (01 13:22:14 days ago)
result error (update) | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-static_O2
timestamp 2024-10-30 10:42:35 UTC (01 13:22:35 days ago)
result error (update) | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_18_llvm_msvc_17.10-O2
timestamp 2024-10-30 10:42:31 UTC (01 13:22:39 days ago)
result error (update) | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-static_O2
timestamp 2024-10-29 03:45:09 UTC (02 20:20:01 days ago)
result success | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8-O2
timestamp 2024-10-29 03:45:06 UTC (02 20:20:03 days ago)
result success | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.8
timestamp 2024-10-29 03:44:24 UTC (02 20:20:46 days ago)
result success | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-static_O2
timestamp 2024-10-29 03:43:43 UTC (02 20:21:26 days ago)
result success | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10-O2
timestamp 2024-10-29 03:42:57 UTC (02 20:22:13 days ago)
result success | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-msvc_17.10
timestamp 2024-10-29 03:42:18 UTC (02 20:22:51 days ago)
result success | log | rebuild
toolchain public-0.17.0
target x86_64-microsoft-win32-msvc14.3
tgt config windows_10-clang_17_msvc_msvc_17.10
timestamp 2024-10-29 03:32:28 UTC (02 20:32:41 days ago)
result success | log | rebuild
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_13.1
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_13
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-static_O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-gcc_14-ndebug_O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_17_libc++
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18-static_O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-O3
result excluded
target aarch64-linux-gnu
tgt config linux_debian_12-clang_18_libc++-static_O3
result excluded
target x86_64-linux-gnu
tgt config linux_debian_12-gcc_12-bindist
result excluded
target x86_64-linux-gnu
tgt config linux_ubuntu_24.04-gcc_13-bindist
result excluded
target x86_64-linux-gnu
tgt config linux_fedora_39-gcc_13-bindist
result excluded
target x86_64-linux-gnu
tgt config linux_fedora_40-gcc_14-bindist
result excluded
target x86_64-apple-darwin22.5.0
tgt config macos_13-clang_15.0
result excluded
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0
result excluded
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-O3
result excluded
target x86_64-apple-darwin23.5.0
tgt config macos_14-clang_15.0-static_O3
result excluded
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew
result excluded
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-O3
result excluded
target x86_64-apple-darwin23.5.0
tgt config macos_14-gcc_14_homebrew-static_O3
result excluded
target x86_64-freebsd13.3
tgt config freebsd_13-clang_17
result excluded
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18
result excluded
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-O3
result excluded
target x86_64-freebsd14.1
tgt config freebsd_14-clang_18-static_O3
result excluded
target x86_64-w64-mingw32
tgt config windows_10-gcc_13.2_mingw_w64
result excluded
target x86_64-w64-mingw32
tgt config windows_10-gcc_13.2_mingw_w64-O2
result excluded
target x86_64-w64-mingw32
tgt config windows_10-gcc_13.2_mingw_w64-static_O2
result excluded