| 3724 | } |
| 3725 | |
| 3726 | ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) |
| 3727 | { |
| 3728 | ImGuiContext& g = *GImGui; |
| 3729 | ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count)); |
| 3730 | TableSettingsInit(settings, id, columns_count, columns_count); |
| 3731 | return settings; |
| 3732 | } |
| 3733 | |
| 3734 | // Find existing settings |
| 3735 | ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id) |
nothing calls this directly
no test coverage detected