mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 21:48:36 +00:00
[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:
parent
37b60a5af0
commit
dbc96892cd
@ -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
|
||||
|
||||
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user