MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / PushColumnClipRect

Method PushColumnClipRect

KBotExt/imgui/imgui_tables.cpp:3848–3857  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3846}
3847
3848void ImGui::PushColumnClipRect(int column_index)
3849{
3850 ImGuiWindow* window = GetCurrentWindowRead();
3851 ImGuiOldColumns* columns = window->DC.CurrentColumns;
3852 if (column_index < 0)
3853 column_index = columns->Current;
3854
3855 ImGuiOldColumnData* column = &columns->Columns[column_index];
3856 PushClipRect(column->ClipRect.Min, column->ClipRect.Max, false);
3857}
3858
3859// Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns)
3860void ImGui::PushColumnsBackground()

Callers

nothing calls this directly

Calls 1

GetCurrentWindowReadFunction · 0.85

Tested by

no test coverage detected