| 36 | } |
| 37 | |
| 38 | void TileManager::resetCoverage(unsigned int level) { |
| 39 | _coverage[level] = std::map<int, std::map<int, unsigned char> >(); |
| 40 | if (_coverageMaps.size() > level) { |
| 41 | _coverageMaps[level] = QPainterPath(); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | QPoint TileManager::pixelCoordinatesToTileCoordinates(QPointF coordinate, unsigned int level) { |
| 46 | if (level < _levelDownsamples.size()) { |
nothing calls this directly
no test coverage detected