| 345 | } |
| 346 | |
| 347 | void WaveBitmapCache::CheckCache(const ZoomInfo&, double, double) |
| 348 | { |
| 349 | if (mEnvelope != nullptr && mEnvelopeVersion != mEnvelope->GetVersion()) |
| 350 | { |
| 351 | mEnvelopeVersion = mEnvelope->GetVersion(); |
| 352 | Invalidate(); |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | bool WaveBitmapCache::InitializeElement( |
| 357 | const GraphicsDataCacheKey& key, WaveBitmapCacheElement& element) |
nothing calls this directly
no test coverage detected