| 2472 | } |
| 2473 | |
| 2474 | void ImGui::TablePopBackgroundChannel() |
| 2475 | { |
| 2476 | ImGuiContext& g = *GImGui; |
| 2477 | ImGuiWindow* window = g.CurrentWindow; |
| 2478 | ImGuiTable* table = g.CurrentTable; |
| 2479 | |
| 2480 | // Optimization: avoid PopClipRect() + SetCurrentChannel() |
| 2481 | SetWindowClipRectBeforeSetChannel(window, table->HostBackupInnerClipRect); |
| 2482 | table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Columns[table->CurrentColumn].DrawChannelCurrent); |
| 2483 | } |
| 2484 | |
| 2485 | // Also see TableBeginCell() |
| 2486 | void ImGui::TablePushColumnChannel(int column_n) |
nothing calls this directly
no test coverage detected