MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / AddInputCharactersUTF8

Method AddInputCharactersUTF8

KBotExt/imgui/imgui.cpp:1349–1359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1347}
1348
1349void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars)
1350{
1351 if (!AppAcceptingEvents)
1352 return;
1353 while (*utf8_chars != 0)
1354 {
1355 unsigned int c = 0;
1356 utf8_chars += ImTextCharFromUtf8(&c, utf8_chars, NULL);
1357 AddInputCharacter(c);
1358 }
1359}
1360
1361// Clear all incoming events.
1362void ImGuiIO::ClearEventsQueue()

Callers

nothing calls this directly

Calls 1

ImTextCharFromUtf8Function · 0.85

Tested by

no test coverage detected