| 10448 | } |
| 10449 | |
| 10450 | void ImGui::SetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) |
| 10451 | { |
| 10452 | ImGuiContext& g = *GImGui; |
| 10453 | g.WantCaptureKeyboardNextFrame = want_capture_keyboard ? 1 : 0; |
| 10454 | } |
| 10455 | |
| 10456 | void ImGui::SetNextFrameWantCaptureMouse(bool want_capture_mouse) |
| 10457 | { |
nothing calls this directly
no outgoing calls
no test coverage detected