| 3237 | } |
| 3238 | |
| 3239 | static size_t TableSettingsCalcChunkSize(int columns_count) |
| 3240 | { |
| 3241 | return sizeof(ImGuiTableSettings) + (size_t)columns_count * sizeof(ImGuiTableColumnSettings); |
| 3242 | } |
| 3243 | |
| 3244 | ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) |
| 3245 | { |
no outgoing calls
no test coverage detected