| 1598 | } |
| 1599 | |
| 1600 | void Framework::OnRecoverSurface(int width, int height, bool recreateContextDependentResources) |
| 1601 | { |
| 1602 | if (m_drapeEngine) |
| 1603 | { |
| 1604 | m_drapeEngine->RecoverSurface(width, height, recreateContextDependentResources); |
| 1605 | |
| 1606 | InvalidateUserMarks(); |
| 1607 | |
| 1608 | m_drapeApi.Invalidate(); |
| 1609 | } |
| 1610 | |
| 1611 | m_trafficManager.OnRecoverSurface(); |
| 1612 | m_transitManager.Invalidate(); |
| 1613 | m_isolinesManager.Invalidate(); |
| 1614 | } |
| 1615 | |
| 1616 | void Framework::OnDestroySurface() |
| 1617 | { |
no test coverage detected