[cimgui 1.53.1] DrawList: Remove anti_aliased: bool final parameter

There is no way I know of to make a deprecation warning in such a case.
Code that uses ImDrawList_AddPolyline or ImDrawList_AddConvexPolyFilled will
break.
This commit is contained in:
Malik Olivier Boussejra 2018-04-29 23:58:54 +09:00
parent 37b60a5af0
commit dbc96892cd
2 changed files with 2 additions and 2 deletions

View File

@ -15,6 +15,8 @@
- Obsolete `sys::SetNextWindowContentWidth()` in favor of using
`sys::igSetNextWindowContentSize()`.
- Rename `sys::ImGuiTextBuffer_append()` helper to `appendf()`.
- Remove `anti_aliased: bool` final parameter of `sys::ImDrawList_AddPolyline`
and `sys::ImDrawList_AddConvexPolyFilled`.
## [0.0.18] - 2017-12-23

View File

@ -2025,14 +2025,12 @@ extern "C" {
col: ImU32,
closed: bool,
thickness: c_float,
anti_aliased: bool,
);
pub fn ImDrawList_AddConvexPolyFilled(
list: *mut ImDrawList,
points: *const ImVec2,
num_points: c_int,
col: ImU32,
anti_aliased: bool,
);
pub fn ImDrawList_AddBezierCurve(
list: *mut ImDrawList,