[Internal] Do not use directly
| 9903 | |
| 9904 | // [Internal] Do not use directly |
| 9905 | static ImGuiKeyChord GetMergedModsFromKeys() |
| 9906 | { |
| 9907 | ImGuiKeyChord mods = 0; |
| 9908 | if (ImGui::IsKeyDown(ImGuiMod_Ctrl)) { mods |= ImGuiMod_Ctrl; } |
| 9909 | if (ImGui::IsKeyDown(ImGuiMod_Shift)) { mods |= ImGuiMod_Shift; } |
| 9910 | if (ImGui::IsKeyDown(ImGuiMod_Alt)) { mods |= ImGuiMod_Alt; } |
| 9911 | if (ImGui::IsKeyDown(ImGuiMod_Super)) { mods |= ImGuiMod_Super; } |
| 9912 | return mods; |
| 9913 | } |
| 9914 | |
| 9915 | static void ImGui::UpdateKeyboardInputs() |
| 9916 | { |
no outgoing calls
no test coverage detected