| 2501 | } |
| 2502 | |
| 2503 | void ImGui::TablePopBackgroundChannel() |
| 2504 | { |
| 2505 | ImGuiContext& g = *GImGui; |
| 2506 | ImGuiWindow* window = g.CurrentWindow; |
| 2507 | ImGuiTable* table = g.CurrentTable; |
| 2508 | |
| 2509 | // Optimization: avoid PopClipRect() + SetCurrentChannel() |
| 2510 | SetWindowClipRectBeforeSetChannel(window, table->HostBackupInnerClipRect); |
| 2511 | table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Columns[table->CurrentColumn].DrawChannelCurrent); |
| 2512 | } |
| 2513 | |
| 2514 | // Also see TableBeginCell() |
| 2515 | void ImGui::TablePushColumnChannel(int column_n) |
nothing calls this directly
no test coverage detected