mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-27 05:18:27 +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
|
- Obsolete `sys::SetNextWindowContentWidth()` in favor of using
|
||||||
`sys::igSetNextWindowContentSize()`.
|
`sys::igSetNextWindowContentSize()`.
|
||||||
- Rename `sys::ImGuiTextBuffer_append()` helper to `appendf()`.
|
- 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
|
## [0.0.18] - 2017-12-23
|
||||||
|
|||||||
@ -2025,14 +2025,12 @@ extern "C" {
|
|||||||
col: ImU32,
|
col: ImU32,
|
||||||
closed: bool,
|
closed: bool,
|
||||||
thickness: c_float,
|
thickness: c_float,
|
||||||
anti_aliased: bool,
|
|
||||||
);
|
);
|
||||||
pub fn ImDrawList_AddConvexPolyFilled(
|
pub fn ImDrawList_AddConvexPolyFilled(
|
||||||
list: *mut ImDrawList,
|
list: *mut ImDrawList,
|
||||||
points: *const ImVec2,
|
points: *const ImVec2,
|
||||||
num_points: c_int,
|
num_points: c_int,
|
||||||
col: ImU32,
|
col: ImU32,
|
||||||
anti_aliased: bool,
|
|
||||||
);
|
);
|
||||||
pub fn ImDrawList_AddBezierCurve(
|
pub fn ImDrawList_AddBezierCurve(
|
||||||
list: *mut ImDrawList,
|
list: *mut ImDrawList,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user