| 455 | } |
| 456 | |
| 457 | void DrapeEngine::ResizeImpl(int w, int h) |
| 458 | { |
| 459 | gui::DrapeGui::Instance().SetSurfaceSize(m2::PointF(w, h)); |
| 460 | m_viewport.SetViewport(0, 0, w, h); |
| 461 | PostUserEvent(make_unique_dp<ResizeEvent>(w, h)); |
| 462 | } |
| 463 | |
| 464 | void DrapeEngine::SetCompassInfo(location::CompassInfo const & info) |
| 465 | { |
nothing calls this directly
no test coverage detected