{"#RESIZE0",ImVec2(1,1),ImVec2(-1,-1),0,3,ImGuiMouseCursor_ResizeNWSE},// Lower right
{"#RESIZE1",ImVec2(0,1),ImVec2(+1,-1),3,6,ImGuiMouseCursor_ResizeNESW},// Lower left
{"#RESIZE2",ImVec2(0,0),ImVec2(+1,+1),6,9,ImGuiMouseCursor_ResizeNWSE},// Upper left
{"#RESIZE3",ImVec2(1,0),ImVec2(-1,+1),9,12,ImGuiMouseCursor_ResizeNESW},// Upper right
};
// Push a new ImGui window to add widgets to.
// Push a new ImGui window to add widgets to.
// - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair.
// - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair.
// - Begin/End can be called multiple times during the frame with the same window name to append content.
// - Begin/End can be called multiple times during the frame with the same window name to append content.
ImGuiWindowFlags_AlwaysVerticalScrollbar=1<<14,// Always show vertical scrollbar (even if ContentSize.y < Size.y)
ImGuiWindowFlags_AlwaysVerticalScrollbar=1<<14,// Always show vertical scrollbar (even if ContentSize.y < Size.y)
ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<<15,// Always show horizontal scrollbar (even if ContentSize.x < Size.x)
ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<<15,// Always show horizontal scrollbar (even if ContentSize.x < Size.x)
ImGuiWindowFlags_AlwaysUseWindowPadding=1<<16,// Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)
ImGuiWindowFlags_AlwaysUseWindowPadding=1<<16,// Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient)
ImGuiWindowFlags_ResizeFromAnySide=1<<17,
// [Internal]
// [Internal]
ImGuiWindowFlags_ChildWindow=1<<22,// Don't use! For internal use by BeginChild()
ImGuiWindowFlags_ChildWindow=1<<22,// Don't use! For internal use by BeginChild()
ImGuiWindowFlags_ComboBox=1<<23,// Don't use! For internal use by ComboBox()
ImGuiWindowFlags_ComboBox=1<<23,// Don't use! For internal use by ComboBox()