------------------------------------------------------------------------------
| 430 | |
| 431 | //------------------------------------------------------------------------------ |
| 432 | void vtkFreeTypeTools::ReleaseCacheManager() |
| 433 | { |
| 434 | if (this->CacheManager) |
| 435 | { |
| 436 | FTC_Manager_Done(*this->CacheManager); |
| 437 | |
| 438 | delete this->CacheManager; |
| 439 | this->CacheManager = nullptr; |
| 440 | } |
| 441 | |
| 442 | delete this->ImageCache; |
| 443 | this->ImageCache = nullptr; |
| 444 | |
| 445 | delete this->CMapCache; |
| 446 | this->CMapCache = nullptr; |
| 447 | } |
| 448 | |
| 449 | //------------------------------------------------------------------------------ |
| 450 | bool vtkFreeTypeTools::GetBoundingBox( |
no test coverage detected