omar/imgui: Release v1.31

Name: imgui

Owner: omar

Release: v1.31

Released: 2015-02-08

License: MIT

Release Assets:

  • Added ImGuiWindowFlags_NoCollapse flag.
  • Added a way to replace the internal state pointer so that we can optionally share it between modules (e.g. multiple DLLs).
  • Added tint_col parameter to ImageButton().
  • Added CalcListClipping() helper to perform faster/coarse clipping on user side (when manipulating lists with thousands of items).
  • Added GetCursorPosX() / GetCursorPosY() shortcuts.
  • Renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing().
  • Combo box always appears above other child windows of a same parent.
  • Combo/Label: label is properly clipped inside the frame (#23).
  • Added cpu-side text clipping functions which are used in some instances to avoid extra draw calls.
  • InputText: Filtering private Unicode range 0xE000-0xF8FF.
  • Fixed holding button over scrollbar creating a small feedback loop with calculation of contents size.
  • Calling SetCursorPos() automatically extends the contents size.
  • Track ownership of mouse clicks. Avoid requesting IO.WantCaptureMouse if initial click was outside of ImGui.
  • Removed the dependency on realloc().
  • Other fixes, tweaks and comments.

To top