| 1573 | ImVector<ImGuiKeyRoutingData> EntriesNext; // Double-buffer to avoid reallocation (could use a shared buffer) |
| 1574 | |
| 1575 | ImGuiKeyRoutingTable() { Clear(); } |
| 1576 | void Clear() { for (int n = 0; n < IM_ARRAYSIZE(Index); n++) Index[n] = -1; Entries.clear(); EntriesNext.clear(); } |
| 1577 | }; |
| 1578 |