You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: imgui.cpp
+2
Original file line number
Diff line number
Diff line change
@@ -376,6 +376,8 @@ CODE
376
376
When you are not sure about a old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all imgui files.
377
377
You can read releases logs https://github.com/ocornut/imgui/releases for more details.
378
378
379
+
- 2021/03/11 (1.82) - removed redirecting functions/enums names that were marked obsolete in 1.66 (September 2018):
380
+
- ImGui::SetScrollHere() -> use ImGui::SetScrollHereY()
379
381
- 2021/03/11 (1.82) - clarified that ImDrawList::PathArcTo(), ImDrawList::PathArcToFast() won't render with radius < 0.0f. Previously it sorts of accidentally worked but would generally lead to counter-clockwise paths and have an effect on anti-aliasing.
380
382
- 2021/03/10 (1.82) - upgraded ImDrawList::AddPolyline() and PathStroke() "bool closed" parameter to "ImDrawFlags flags". The matching ImDrawFlags_Closed value is guaranteed to always stay == 1 in the future.
381
383
- 2021/02/22 (1.82) - win32+mingw: Re-enabled IME functions by default even under MinGW. In July 2016, issue #738 had me incorrectly disable those default functions for MinGW. MinGW users should: either link with -limm32, either set their imconfig file with '#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS'.
IMGUI_API boolListBoxHeader(constchar* label, int items_count, int height_in_items = -1); // Helper to calculate size from items_count and height_in_items
staticinlinevoidOpenPopupContextItem(constchar* str_id = NULL, ImGuiMouseButton mb = 1) { OpenPopupOnItemClick(str_id, mb); } // Bool return value removed. Use IsWindowAppearing() in BeginPopup() instead. Renamed in 1.77, renamed back in 1.79. Sorry!
1993
-
// OBSOLETED in 1.78 (from June 2020)
1994
-
// Old drag/sliders functions that took a 'float power = 1.0' argument instead of flags.
1995
-
// For shared code, you can version check at compile-time with `#if IMGUI_VERSION_NUM >= 17704`.
IMGUI_API boolListBoxHeader(constchar* label, int items_count, int height_in_items = -1); // Helper to calculate size from items_count and height_in_items
staticinlinevoidOpenPopupContextItem(constchar* str_id = NULL, ImGuiMouseButton mb = 1) { OpenPopupOnItemClick(str_id, mb); } // Bool return value removed. Use IsWindowAppearing() in BeginPopup() instead. Renamed in 1.77, renamed back in 1.79. Sorry!
2765
+
// OBSOLETED in 1.78 (from June 2020)
2766
+
// Old drag/sliders functions that took a 'float power = 1.0' argument instead of flags.
2767
+
// For shared code, you can version check at compile-time with `#if IMGUI_VERSION_NUM >= 17704`.
0 commit comments