MCPcopy Create free account
hub / github.com/RenderKit/embree / TableSettingsCreate

Method TableSettingsCreate

tutorials/common/imgui/imgui_tables.cpp:3190–3196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3188}
3189
3190ImGuiTableSettings* 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
3199ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id)

Callers

nothing calls this directly

Calls 3

TableSettingsInitFunction · 0.85
alloc_chunkMethod · 0.80

Tested by

no test coverage detected