| 3153 | } |
| 3154 | |
| 3155 | ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) |
| 3156 | { |
| 3157 | ImGuiContext& g = *GImGui; |
| 3158 | ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count)); |
| 3159 | TableSettingsInit(settings, id, columns_count, columns_count); |
| 3160 | return settings; |
| 3161 | } |
| 3162 | |
| 3163 | // Find existing settings |
| 3164 | ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id) |
nothing calls this directly
no test coverage detected