client -> render 修改帧率
| 546 | |
| 547 | // client -> render 修改帧率 |
| 548 | void PluginNetEventRouter::ProcessModifyFps(std::shared_ptr<Message>&& msg) { |
| 549 | auto mf = msg->modify_fps(); |
| 550 | int fps = mf.fps(); |
| 551 | if (context_) { |
| 552 | context_->SendAppMessage(MsgModifyFps{.fps_ = fps}); |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | // void PluginNetEventRouter::ProcessFocusOutEvent() { |
| 557 | // win_event_replayer_->HandleFocusOutEvent(); |
nothing calls this directly
no test coverage detected