MCPcopy Create free account
hub / github.com/GPUOpen-LibrariesAndSDKs/Cauldron / ListBox

Method ListBox

libs/imgui/imgui.cpp:9505–9509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9503}
9504
9505bool ImGui::ListBox(const char* label, int* current_item, const char* const* items, int items_count, int height_items)
9506{
9507 const bool value_changed = ListBox(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_items);
9508 return value_changed;
9509}
9510
9511bool ImGui::ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int height_in_items)
9512{

Callers

nothing calls this directly

Calls 1

StepMethod · 0.45

Tested by

no test coverage detected