History for imgui / imgui.cpp
2015-08-05
@ocornut
Comments
ocornut committed on 5 Aug 2015
@ocornut
InputFloat() fixed 0 decimal_precision
ocornut committed on 5 Aug 2015
@ocornut
RoundScalar() fallback use powf(10.f, -x) instead of 1.0f/powf(10.0f,x)
ocornut committed on 5 Aug 2015
@ocornut
InputInt() also hexadecimal input (awkwardly via ImGuiInputTextFlags_CharsHexadecimal but we will allow fmt string in InputInt* later) ...
ocornut committed on 5 Aug 2015
@ocornut
RoundScalar() use a lookup table to avoid calling powf(10.0f, x);
ocornut committed on 5 Aug 2015
@ocornut
InputInt() doesn't cast to float, fix handling lost of precision with large integer. Added primitives to support more data types.
ocornut committed on 5 Aug 2015
@ocornut
Minor comments
ocornut committed on 5 Aug 2015
@ocornut
Comments
ocornut committed on 5 Aug 2015
@ocornut
Slider: fixed using FramePadding between frame and grab visual. Scaling that spacing would look odd.
ocornut committed on 5 Aug 2015
@ocornut
Fixed scaling of checkbox and radio button for the filling of "active" visual
ocornut committed on 5 Aug 2015
2015-08-03
@ocornut
Added ImFontAtlas::AddFontFromMemoryCompressedBase85TTF()
ocornut committed on 3 Aug 2015
2015-08-02
@ocornut
Fixed lower-right resize grip hit box not scaling along with its rendered size (#287)
ocornut committed on 2 Aug 2015
2015-08-01
@ocornut
Updated to stb_truetype 1.07 (back to vanilla version as our minor changes are now in master & fix #280)
ocornut committed on 1 Aug 2015
2015-07-30
@ocornut
Internal cleanup ParseFormatPrecision() doesn't take a reference
ocornut committed on 30 Jul 2015
@ocornut
Internal SliderFloatAsInputText() -> InputFloatReplaceWidget()
ocornut committed on 30 Jul 2015
@ocornut
Todo list notes
ocornut committed on 30 Jul 2015
@ocornut
Make internal SliderFloatAsInputText() take a size to match the calling widget
ocornut committed on 30 Jul 2015
@ocornut
ImDrawList: Add missing support for anti-aliased thick-lines (#133, also ref #288)
ocornut committed on 30 Jul 2015
@ocornut
Removed unnecessary assignment + added comment
ocornut committed on 30 Jul 2015
@ocornut
Default font encoded as base85 saves ~100 lines / 26 KB of source code (from @mmalex)
ocornut committed on 30 Jul 2015
@ocornut
Columns: never assume horizontal space for scrollbar if NoScrollbar flag is set.
ocornut committed on 30 Jul 2015
2015-07-26
@Xo Wang
Remove non-text character at start of imgui.cpp
Xo Wang committed on 26 Jul 2015
2015-07-22
@ocornut
Fixed warning in console example (we're iterating chars)
ocornut committed on 22 Jul 2015
2015-07-19
@ocornut
Fix to get all code ShowTestWindow() copiable outside. Moved ShowMetricsWindows() above. (#219)
ocornut committed on 19 Jul 2015
2015-07-18
@ocornut
Fixed inconsistent declaration of ImVec2 privates operators
ocornut committed on 18 Jul 2015
@ocornut
Added ImDrawList::AddText() shorthand helper
ocornut committed on 18 Jul 2015
@ocornut
Fixed angles in ImDrawList::PathArcTo(), PathArcToFast() being off by an extra PI for no reason
ocornut committed on 18 Jul 2015
@ocornut
ImDrawList::AddPolyLine() tidying up in AA path
ocornut committed on 18 Jul 2015
2015-07-17
@ocornut
Added ImGuiWindowFlags_NoInputs for input-passthru window ...
ocornut committed on 17 Jul 2015
@ocornut
Combo() clamp popup to lower edge of visible area
ocornut committed on 17 Jul 2015