MCPcopy Create free account
hub / github.com/RenderKit/embree / PushColumnClipRect

Method PushColumnClipRect

tutorials/common/imgui/imgui_tables.cpp:3794–3803  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3792}
3793
3794void ImGui::PushColumnClipRect(int column_index)
3795{
3796 ImGuiWindow* window = GetCurrentWindowRead();
3797 ImGuiOldColumns* columns = window->DC.CurrentColumns;
3798 if (column_index < 0)
3799 column_index = columns->Current;
3800
3801 ImGuiOldColumnData* column = &columns->Columns[column_index];
3802 PushClipRect(column->ClipRect.Min, column->ClipRect.Max, false);
3803}
3804
3805// Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns)
3806void ImGui::PushColumnsBackground()

Callers

nothing calls this directly

Calls 1

GetCurrentWindowReadFunction · 0.85

Tested by

no test coverage detected