MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / TableSettingsCreate

Method TableSettingsCreate

KBotExt/imgui/imgui_tables.cpp:3244–3250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3242}
3243
3244ImGuiTableSettings* 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
3253ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id)

Callers

nothing calls this directly

Calls 3

TableSettingsInitFunction · 0.85
alloc_chunkMethod · 0.80

Tested by

no test coverage detected