History for imgui / imgui.h
2019-05-29
@omar
Renamed ImGuiBackendFlags_HasVtxOffset to ImGuiBackendFlags_RendererHasVtxOffset to match naming convention already used in viewport/docking branch. (#2591) + Fix OpenGL3 code missing flag.
omar committed on 29 May 2019
@omar
ImDrawList: Added ImDrawCmd::VtxOffset value to support large meshes (64k+ vertices) using 16-bits indices. To enable the feature, the renderer back-end needs to set 'io.BackendFlags |= ImGuiBackendFlags_HasVtxOffset' and honor the ImDrawCmd::VtxOffset field. Otherwise the value will always be zero. This has the advantage of preserving smaller index buffers and allowing to execute on hardware that do not support 32-bits indices. ...
omar committed on 29 May 2019
@omar
ImDrawList: Store initial flags for the frame in ImDrawListSharedData, reducing code duplication in setting up the flags.
omar committed on 29 May 2019
2019-05-28
@omar
Fonts: Added some details about using custom colorful icons.
omar committed on 28 May 2019
2019-05-27
@omar
Comments, todo entries, moved ImGuiSelectableFlagsPrivate in higher ranges to match others.
omar committed on 27 May 2019
2019-05-24
@omar
Style: Added style.WindowMenuButtonPosition (left/right, defaults to ImGuiDir_Left) to move the collapsing/docking button to the other side of the title bar.
omar committed on 24 May 2019
2019-05-22
@omar
Version tag is 1.71 WIP oops
omar committed on 22 May 2019
2019-05-21
@omar
ImFontGlyphRangesBuilder: Fixed unnecessarily over-sized buffer, which incidentally was also not fully cleared. Fixed edge case overflow when adding character 0xFFFF. (#2568)
omar committed on 21 May 2019
2019-05-13
@omar
Fixed InputFloatX, SliderFloatX, DragFloatX functions erroneously reporting IsItemEdited() multiple times when the text input doesn't match the formatted output value (e.g. input "1" shows "1.000"). It wasn't much of a problem because we typically use the return value instead of IsItemEdited() here. (#1875, #2034)
omar committed on 13 May 2019
@omar
Renamed SetNextTreeNodeOpen() to SetNextItemOpen(). Refactored SetNextItemXXX stuff to match SetNextWindowXXX code closely.
omar committed on 13 May 2019
2019-05-11
@omar
IO: changed AddInputCharacter(unsigned short c) signature to AddInputCharacter(unsigned int c). ...
omar committed on 11 May 2019
2019-05-09
@omar
Internals: Columns: Renamed fields. Comments and tweak. Moved a demo block.
omar committed on 9 May 2019
2019-05-07
@omar
Version 1.71 WIP + fixed minor typo
omar committed on 7 May 2019
2019-05-06
@omar
Version 1.70
omar committed on 6 May 2019
2019-05-03
@omar
Window: Fixed SetNextWindowSizeConstraints() with non-rounded positions making windows drift. (#2067, #2530)
omar committed on 3 May 2019
@omar
Misc: Made IMGUI_CHECKVERSION() macro also check for matching size of ImDrawIdx.
omar committed on 3 May 2019
@omar
Selectable: With ImGuiSelectableFlags_AllowDoubleClick doesn't return true on the mouse button releas efollowing the double-click. Only first mouse release + second mouse down (double-click) returns true. Likewise for internal ButtonBehavior() with both _PressedOnClickRelease | _PressedOnDoubleClick. (#2503)
omar committed on 3 May 2019
2019-04-30
@omar
ImDrawCallback_ResetRenderState, Examples: Added support for reset render state callback. (#2037, #1639, #2452)
omar committed on 30 Apr 2019
2019-04-29
@omar
Obsoleted GetContentRegionAvailWidth(), use GetContentRegionAvail().x instead. Kept inline redirection function.
omar committed on 29 Apr 2019
2019-04-24
@omar
Misc comments, internal renaming, added disable indentation option to Columns demo section.
omar committed on 24 Apr 2019
2019-04-22
@omar
Increased IMGUI_VERSION_NUM arbitrarily, help narrowing down reports that don't include a commit hash. Add comments.
omar committed on 22 Apr 2019
2019-04-18
@omar
Added SetNextItemWidth() helper to avoid using PushItemWidth/PopItemWidth() for single items.
omar committed on 18 Apr 2019
@omar
Added commentary about ContentRegion functions. Added internal GetContentRegionMaxScreen() to facilitate internal code at the moment.
omar committed on 18 Apr 2019
2019-04-17
@omar
Internals: Columns: Tweaks, renaming. Metrics: Show rectangles for child windows. ...
omar committed on 17 Apr 2019
2019-04-05
@omar
Misc: Added IM_MALLOC/IM_FREE macros mimicking IM_NEW/IM_DELETE so user doesn't need to revert to using the ImGui::MemAlloc()/MemFree() calls directly.
omar committed on 5 Apr 2019
2019-03-29
@omar
Examples: OpenGL3: Minor tweaks, clarifications + not calling glBindBuffer more than necessary in the render loop.
omar committed on 29 Mar 2019
2019-03-26
@omar
Comments (#2441) + Freeglut fixes (#2430)
omar committed on 26 Mar 2019
2019-03-16
@omar
Comments, todo list, remove trailing spaces.
omar committed on 16 Mar 2019
2019-03-15
@omar
GetMouseDragDelta(): also returns the delta on the mouse button released frame. Verify that mouse positions are valid otherwise returns zero. Removed obsolete comment. Tweaked demo. (#2419)
omar committed on 15 Mar 2019
@omar
Version 1.70 WIP
omar committed on 15 Mar 2019