Also see TableBeginCell()
| 2484 | |
| 2485 | // Also see TableBeginCell() |
| 2486 | void ImGui::TablePushColumnChannel(int column_n) |
| 2487 | { |
| 2488 | ImGuiContext& g = *GImGui; |
| 2489 | ImGuiTable* table = g.CurrentTable; |
| 2490 | |
| 2491 | // Optimization: avoid SetCurrentChannel() + PushClipRect() |
| 2492 | if (table->Flags & ImGuiTableFlags_NoClip) |
| 2493 | return; |
| 2494 | ImGuiWindow* window = g.CurrentWindow; |
| 2495 | const ImGuiTableColumn* column = &table->Columns[column_n]; |
| 2496 | SetWindowClipRectBeforeSetChannel(window, column->ClipRect); |
| 2497 | table->DrawSplitter->SetCurrentChannel(window->DrawList, column->DrawChannelCurrent); |
| 2498 | } |
| 2499 | |
| 2500 | void ImGui::TablePopColumnChannel() |
| 2501 | { |
nothing calls this directly
no test coverage detected