ImDrawList: added PathEllipticalArcTo(), AddEllipse(), AddEllipseFilled(). (#2743)

Rebased with mods by ocornut: defaults to num_segments==0, supports for auto-tesselation, tweak demo.
This commit is contained in:
Leonardo Serrano
2019-08-22 21:50:02 -07:00
committed by ocornut
parent fa2e5710ac
commit e3d9b875c9
4 changed files with 59 additions and 3 deletions

View File

@ -50,6 +50,7 @@ Other changes:
- MenuBar: Fixed an issue where layouting an item in the menu-bar would erroneously
register contents size in a way that would affect the scrolling layer.
Was most often noticable when using an horizontal scrollbar. (#6789)
- ImDrawList: Added AddEllipse(), AddEllipseFilled(), PathEllipticalArcTo(). (#2743) [@Doohl]
- Backends: GLFW: Clear emscripten's MouseWheel callback before shutdown. (#6790, #6096, #4019) [@halx99]