| 1356 | ImVector<ImGuiKeyRoutingData> EntriesNext; // Double-buffer to avoid reallocation (could use a shared buffer) |
| 1357 | |
| 1358 | ImGuiKeyRoutingTable() { Clear(); } |
| 1359 | void Clear() { for (int n = 0; n < IM_ARRAYSIZE(Index); n++) Index[n] = -1; Entries.clear(); EntriesNext.clear(); } |
| 1360 | }; |
| 1361 |