| 3188 | } |
| 3189 | |
| 3190 | ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) |
| 3191 | { |
| 3192 | ImGuiContext& g = *GImGui; |
| 3193 | ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count)); |
| 3194 | TableSettingsInit(settings, id, columns_count, columns_count); |
| 3195 | return settings; |
| 3196 | } |
| 3197 | |
| 3198 | // Find existing settings |
| 3199 | ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id) |
nothing calls this directly
no test coverage detected