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
//ImGuiCol_CloseButton, ImGuiCol_CloseButtonActive, ImGuiCol_CloseButtonHovered, // [unused since 1.60+] the close button now uses regular button colors.
1041
1042
//ImGuiCol_ComboBg, // [unused since 1.53+] ComboBg has been merged with PopupBg, so a redirect isn't accurate.
1042
1043
#endif
@@ -1336,7 +1337,7 @@ struct ImGuiIO
1336
1337
// You can obtain the ImDrawData* by calling ImGui::GetDrawData() after Render(). See example applications if you are unsure of how to implement this.
1337
1338
void (*RenderDrawListsFn)(ImDrawData* data);
1338
1339
#else
1339
-
// This is only here to keep ImGuiIO the same size, so that IMGUI_DISABLE_OBSOLETE_FUNCTIONS can exceptionally be used outside of imconfig.h.
1340
+
// This is only here to keep ImGuiIO the same size/layout, so that IMGUI_DISABLE_OBSOLETE_FUNCTIONS can exceptionally be used outside of imconfig.h.
// OBSOLETED in 1.61 (between Apr 2018 and Aug 2018)
1489
1491
IMGUI_API boolInputFloat(constchar* label, float* v, float step, float step_fast, int decimal_precision, ImGuiInputTextFlags flags = 0); // Use the 'const char* format' version instead of 'decimal_precision'!
// Helper: Macro for ImGuiOnceUponAFrame. Attention: The macro expands into 2 statement so make sure you don't use it within e.g. an if() statement without curly braces.
1542
-
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS// Will obsolete
1543
-
#defineIMGUI_ONCE_UPON_A_FRAMEstatic ImGuiOnceUponAFrame imgui_oaf; if (imgui_oaf)
1544
+
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
1545
+
#defineIMGUI_ONCE_UPON_A_FRAMEstatic ImGuiOnceUponAFrame imgui_oaf; if (imgui_oaf)// OBSOLETED in 1.51, will remove!
1544
1546
#endif
1545
1547
1546
1548
// Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]"
0 commit comments