| 208 | } |
| 209 | |
| 210 | bool ReadManager::MustDropAllTiles(ScreenBase const & screen) const |
| 211 | { |
| 212 | int const oldScale = df::GetDrawTileScale(m_currentViewport); |
| 213 | int const newScale = df::GetDrawTileScale(screen); |
| 214 | return (oldScale != newScale) || !m_currentViewport.GlobalRect().IsIntersect(screen.GlobalRect()); |
| 215 | } |
| 216 | |
| 217 | void ReadManager::PushTaskBackForTileKey(TileKey const & tileKey, ref_ptr<dp::TextureManager> texMng, |
| 218 | ref_ptr<MetalineManager> metalineMng) |
nothing calls this directly
no test coverage detected