| 258 | } |
| 259 | |
| 260 | static void ImGui_ImplWin32_UpdateKeyModifiers() |
| 261 | { |
| 262 | ImGuiIO& io = ImGui::GetIO(); |
| 263 | io.AddKeyEvent(ImGuiMod_Ctrl, IsVkDown(VK_CONTROL)); |
| 264 | io.AddKeyEvent(ImGuiMod_Shift, IsVkDown(VK_SHIFT)); |
| 265 | io.AddKeyEvent(ImGuiMod_Alt, IsVkDown(VK_MENU)); |
| 266 | io.AddKeyEvent(ImGuiMod_Super, IsVkDown(VK_APPS)); |
| 267 | } |
| 268 | |
| 269 | static void ImGui_ImplWin32_UpdateMouseData() |
| 270 | { |
no test coverage detected