[Internal] Do not use directly
| 4332 | |
| 4333 | // [Internal] Do not use directly |
| 4334 | static ImGuiKeyChord GetMergedModsFromKeys() |
| 4335 | { |
| 4336 | ImGuiKeyChord mods = 0; |
| 4337 | if (ImGui::IsKeyDown(ImGuiMod_Ctrl)) { mods |= ImGuiMod_Ctrl; } |
| 4338 | if (ImGui::IsKeyDown(ImGuiMod_Shift)) { mods |= ImGuiMod_Shift; } |
| 4339 | if (ImGui::IsKeyDown(ImGuiMod_Alt)) { mods |= ImGuiMod_Alt; } |
| 4340 | if (ImGui::IsKeyDown(ImGuiMod_Super)) { mods |= ImGuiMod_Super; } |
| 4341 | return mods; |
| 4342 | } |
| 4343 | |
| 4344 | static void ImGui::UpdateKeyboardInputs() |
| 4345 | { |
no outgoing calls
no test coverage detected