| 169 | } |
| 170 | |
| 171 | void ManagedDisplayPort::SetCursorHandler( |
| 172 | std::function<void(const CursorInfo&)> handler) { |
| 173 | std::lock_guard<std::mutex> lock(mutex_); |
| 174 | cursor_handler_ = std::move(handler); |
| 175 | } |
| 176 | |
| 177 | void ManagedDisplayPort::SubmitScanoutState(bool active, uint32_t width, uint32_t height) { |
| 178 | std::function<void(bool, uint32_t, uint32_t)> handler; |
no outgoing calls
no test coverage detected