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

Method TablePushBackgroundChannel

KBotExt/imgui/imgui_tables.cpp:2290–2300  ·  view source on GitHub ↗

Bg2 is used by Selectable (and possibly other widgets) to render to the background. Unlike our Bg0/1 channel which we uses for RowBg/CellBg/Borders and where we guarantee all shapes to be CPU-clipped, the Bg2 channel being widgets-facing will rely on regular ClipRect.

Source from the content-addressed store, hash-verified

2288// Bg2 is used by Selectable (and possibly other widgets) to render to the background.
2289// Unlike our Bg0/1 channel which we uses for RowBg/CellBg/Borders and where we guarantee all shapes to be CPU-clipped, the Bg2 channel being widgets-facing will rely on regular ClipRect.
2290void ImGui::TablePushBackgroundChannel()
2291{
2292 ImGuiContext& g = *GImGui;
2293 ImGuiWindow* window = g.CurrentWindow;
2294 ImGuiTable* table = g.CurrentTable;
2295
2296 // Optimization: avoid SetCurrentChannel() + PushClipRect()
2297 table->HostBackupInnerClipRect = window->ClipRect;
2298 SetWindowClipRectBeforeSetChannel(window, table->Bg2ClipRectForDrawCmd);
2299 table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Bg2DrawChannelCurrent);
2300}
2301
2302void ImGui::TablePopBackgroundChannel()
2303{

Callers

nothing calls this directly

Calls 1

SetCurrentChannelMethod · 0.80

Tested by

no test coverage detected