ImDrawList: Fixed AddCircle(), AddCircleFilled() angle step being off, which was visible when drawing a "circle" with a small number of segments (e.g. an hexagon). (#2287) [@baktery]

+ Demo tweaks
This commit is contained in:
omar
2019-01-16 17:47:49 +01:00
parent 06aaf23877
commit 8cbb91261e
4 changed files with 27 additions and 17 deletions

View File

@ -34,6 +34,8 @@ HOW TO UPDATE?
-----------------------------------------------------------------------
Other Changes:
- ImDrawList: Fixed AddCircle(), AddCircleFilled() angle step being off, which was visible when drawing a "circle"
with a small number of segments (e.g. an hexagon). (#2287) [@baktery]
- Fonts: imgui_freetype: Added support for imgui allocators + custom FreeType only SetAllocatorFunctions. (#2285) [@Vuhdo]
- Examples: Win32: Using GetForegroundWindow() instead of GetActiveWindow() to be compatible with windows created
in a different thread. (#1951, #2087, #2156, #2232) [many people]