------------------------------------------------------------------------------
| 103 | |
| 104 | //------------------------------------------------------------------------------ |
| 105 | vtkParallelRenderManager::~vtkParallelRenderManager() |
| 106 | { |
| 107 | this->SetRenderWindow(nullptr); |
| 108 | if (this->Controller && this->AddedRMIs) |
| 109 | { |
| 110 | this->Controller->RemoveRMI(this->RenderRMIId); |
| 111 | this->Controller->RemoveRMI(this->BoundsRMIId); |
| 112 | this->AddedRMIs = 0; |
| 113 | } |
| 114 | this->SetController(nullptr); |
| 115 | if (this->FullImage) |
| 116 | this->FullImage->Delete(); |
| 117 | if (this->ReducedImage) |
| 118 | this->ReducedImage->Delete(); |
| 119 | if (this->Viewports) |
| 120 | this->Viewports->Delete(); |
| 121 | if (this->Timer) |
| 122 | this->Timer->Delete(); |
| 123 | if (this->Renderers) |
| 124 | this->Renderers->Delete(); |
| 125 | } |
| 126 | |
| 127 | //------------------------------------------------------------------------------ |
| 128 | void vtkParallelRenderManager::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected