Skip to content

Instantly share code, notes, and snippets.

View Taiga74164's full-sized avatar
😭

Joaquin Taiga74164

😭
View GitHub Profile
@Taiga74164
Taiga74164 / dear imgui, selectable popup example
Created September 14, 2022 20:10 — forked from harold-b/dear imgui, selectable popup example
A functional selectable pseudo-popup window example using dear imgui, for use with autocomplete or input history.
const int ENTRY_COUNT = 10;
const char* ENTRIES[ENTRY_COUNT] =
{
"Entry 0",
"Entry 1",
"Entry 2",
"Entry 3",
"Entry 4",
"Entry 5",