[Internal] Do not use directly
| 8462 | |
| 8463 | // [Internal] Do not use directly |
| 8464 | static ImGuiKeyChord GetMergedModsFromKeys() |
| 8465 | { |
| 8466 | ImGuiKeyChord mods = 0; |
| 8467 | if (ImGui::IsKeyDown(ImGuiMod_Ctrl)) { mods |= ImGuiMod_Ctrl; } |
| 8468 | if (ImGui::IsKeyDown(ImGuiMod_Shift)) { mods |= ImGuiMod_Shift; } |
| 8469 | if (ImGui::IsKeyDown(ImGuiMod_Alt)) { mods |= ImGuiMod_Alt; } |
| 8470 | if (ImGui::IsKeyDown(ImGuiMod_Super)) { mods |= ImGuiMod_Super; } |
| 8471 | return mods; |
| 8472 | } |
| 8473 | |
| 8474 | static void ImGui::UpdateKeyboardInputs() |
| 8475 | { |
no outgoing calls
no test coverage detected