Immediate mode GUI

An immediate mode graphic user interface (GUI), also known as IMGUI, is a graphical user interface design pattern which uses an immediate mode graphics library to create the GUI. The other major pattern of API design in graphics libraries is the retained mode.[1]

Schematic explanation of an immediate mode graphics API

Implementations

Most of the immediate mode GUI widget toolkit is implemented in default system controls and custom rendering for game development, graphic apps, Library: Scale form, and Dear ImGui.

For game implementation, a GUI should

  • be updated in sync with the game scene or complex graphic.
  • be overlaid on a game scene or complex graphic (which is especially easy in both cases, when both GUI and game scene are controlled by the game loop).
  • have an unusual appearance or be pepped with complex graphic. This implies that in an immediate mode GUI, the client code is holding its own rendering primitives and API design which affects the graphics pipeline implementation.

The immediate mode GUI widget toolkit

  • is more direct in the sense that the widget tree is often a function call tree that is compostable and flexible but hard to interact with.
  • is less complex and easier to understand (in terms of fewer implicit assumptions per toolset API call). This usually also results in less functionality.
  • is more elaborate to create and manage (typically needs more tool set API calls) if more than a simple widget tree, including layout (absolute and relative positioning referring to parent or siblings).
  • has less sophisticated occlusion culling (z-buffering), hit-testing, state change handling, scrolling, and focus/hot control (widget) animations. This also implies the need to manage the logical tree/visual tree itself.
  • has to rebuild the vertex buffers completely from scratch for each new frame.
  • can put a constant workload on the CPU if not utilizing shaders loaded on the GPU.

Immediate mode GUI widget toolkits are a good choice for those who prefer a simple, easily changeable, and extendable GUI toolkit. They are usually generic, open-source, and cross-platform. One way to have the flexibility and composability of an immediate mode GUI without the disadvantages of keeping the widget tree only in function calls, with the lack of direct control of how the GUI is drawn in the rendering engine would be to use a virtual widget tree, just like React uses a virtual DOM.

History

The original immediate mode GUI toolkit is imgui by Mikko Mononen[2] which is based on OpenGL.The idea was popularized by Casey Muratori.

Other types of immediate mode GUI

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.