| 3242 | } |
| 3243 | |
| 3244 | ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) |
| 3245 | { |
| 3246 | ImGuiContext& g = *GImGui; |
| 3247 | ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count)); |
| 3248 | TableSettingsInit(settings, id, columns_count, columns_count); |
| 3249 | return settings; |
| 3250 | } |
| 3251 | |
| 3252 | // Find existing settings |
| 3253 | ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id) |
nothing calls this directly
no test coverage detected