(bitmapCache: FrustumBitmapCache)
| 174 | } |
| 175 | |
| 176 | export function clearFrustumBitmapCache(bitmapCache: FrustumBitmapCache): void { |
| 177 | for (const { bitmap } of bitmapCache.values()) { |
| 178 | bitmap.close(); |
| 179 | } |
| 180 | bitmapCache.clear(); |
| 181 | } |
no test coverage detected