| 412 | } |
| 413 | |
| 414 | void DrapeEngine::PostUserEvent(drape_ptr<UserEvent> && e) |
| 415 | { |
| 416 | m_threadCommutator->PostMessage(ThreadsCommutator::RenderThread, make_unique_dp<PostUserEventMessage>(std::move(e)), |
| 417 | MessagePriority::Normal); |
| 418 | } |
| 419 | |
| 420 | void DrapeEngine::AddUserEvent(drape_ptr<UserEvent> && e) |
| 421 | { |
nothing calls this directly
no test coverage detected