- May 14, 2018
-
-
omar authored
-
- May 13, 2018
-
-
omar authored
Demo: Tweaked custom rendering custom, added a Thickness drag. Clarified use of vertical/horizontal line. Add a single pixel demo (wowow)
-
omar authored
ColorEdit: Fixed not being able to pass the ImGuiColorEditFlags_NoAlpha or ImGuiColorEditFlags_HDR flags to SetColorEditOptions(). Demo tweak.
-
omar authored
-
omar authored
Added ImAtof, ImCeil, ImFloorStd to IMGUI_DISABLE_MATH_FUNCTIONS for consistency. Configuration comments.
-
omar authored
Added IMGUI_DISABLE_MATH_FUNCTIONS in imconfig.h to make it slightly easier to redefine wrappers to std maths functions such as fabsf(), fmodf(), etc. Comments.
-
omar authored
-
- May 12, 2018
- May 11, 2018
- May 10, 2018
-
-
omar authored
Scrolling: Fixed a case where using SetScrollHere(1.0f) at the bottom of a window on the same frame the window height has been growing would have the scroll clamped using the previous height. (#1804)
-
- May 09, 2018
-
-
omar authored
-
omar authored
Internals: Made ContentsRegionRect absolute to reduce confusion. Renamed InnerRect to InnerMainRect, renamed WindowRectClipper to OuterRectClipped.
-
omar authored
Internals: Nav: Extracted code into a NavClampToVisibleAreaForMoveDir() + fix debug code + inline some functions, removed obsolete EndChild() comment.
-
omar authored
-
Elias Daler authored
-
- May 08, 2018
-
-
omar authored
Data types: Fix format srtings with leading blanks. Fix ColorEdit4() to not use obsolete formats (when using IMGUI_DISABLE_OBSOLETE_FUNCTIONS) (#643)
-
omar authored
Internals: Declaring DragBehavior, SliderBehavior in there (no warantee given) as they may be useful to custom widgets.
-
omar authored
Moved DragScalar, InputScalar, SliderScalar to imgui.h as well as ImGuiDataType (#320, #643, #708, #1011)
-
omar authored
-
omar authored
Fix to allow compiling in unity builds where stb_rectpack/stb_truetype may be already included in the same compilation unit.
-
- May 07, 2018
-
-
omar authored
-
omar authored
Settings: Added LoadIniSettingsFromDisk(), LoadIniSettingsFromMemory(), SaveIniSettingsToDisk(), SaveIniSettingsToMemory(), io.WantSaveIniSettings. (#923, #993)
-
omar authored
Internals: Removed unnecessary allocation indirection for g.LogClipboard (this only made sense when there was a global context instance)
-
omar authored
-
omar authored
-
omar authored
Skip missing font glyphs to 1) avoid using space for missing glyphs and 2) allow merging fonts with overlapping ranges. Demo: Fixed displaying ? instead of greyed out empty box. (#1671, #1703)
-
omar authored
-
omar authored
-
SR_team authored
add backuping transform for Dx9 impl (#1790, #1687)
-
- May 04, 2018
-
-
omar authored
SliderScalar, VSliderScalar(): Support for any data types. Tested with various ranges/limits. Note that Drag/Slider/Input currently fail if the format string doesn't preview the actual value. Will fix next. (#320, #643, #708, #1011)
-
omar authored
Internals: A few selected math helpers are now using template to handle all supported types. Added ImPow() to wrap float/double in a standard manner without calling pow(double) when not needed in Drag code.
-
omar authored
Internals: Data types: Made format string optional. DragBehavior: Moved a bit of code outside of the template. Slider tidying up. Removed unnecessary call to fabsf().
-
omar authored
DragFloat, DragInt: Default format string is none is passed to the function. Fixed demo using old style %.0f.
-