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

Function TableSettingsHandler_ApplyAll

tutorials/common/imgui/imgui_tables.cpp:3363–3372  ·  view source on GitHub ↗

Apply to existing windows (if any)

Source from the content-addressed store, hash-verified

3361
3362// Apply to existing windows (if any)
3363static void TableSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*)
3364{
3365 ImGuiContext& g = *ctx;
3366 for (int i = 0; i != g.Tables.GetMapSize(); i++)
3367 if (ImGuiTable* table = g.Tables.TryGetMapData(i))
3368 {
3369 table->IsSettingsRequestLoad = true;
3370 table->SettingsOffset = -1;
3371 }
3372}
3373
3374static void* TableSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name)
3375{

Callers

nothing calls this directly

Calls 2

GetMapSizeMethod · 0.80
TryGetMapDataMethod · 0.80

Tested by

no test coverage detected