MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / TableSettingsCreate

Method TableSettingsCreate

include/imgui/imgui_tables.cpp:3726–3732  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3724}
3725
3726ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count)
3727{
3728 ImGuiContext& g = *GImGui;
3729 ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count));
3730 TableSettingsInit(settings, id, columns_count, columns_count);
3731 return settings;
3732}
3733
3734// Find existing settings
3735ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id)

Callers

nothing calls this directly

Calls 3

TableSettingsInitFunction · 0.85
alloc_chunkMethod · 0.80

Tested by

no test coverage detected