------------------------------------------------------------------------------
| 105 | |
| 106 | //------------------------------------------------------------------------------ |
| 107 | vtkGPUVolumeRayCastMapper::~vtkGPUVolumeRayCastMapper() |
| 108 | { |
| 109 | this->SetMaskInput(nullptr); |
| 110 | |
| 111 | for (auto& input : this->TransformedInputs) |
| 112 | { |
| 113 | input.second->Delete(); |
| 114 | } |
| 115 | this->TransformedInputs.clear(); |
| 116 | |
| 117 | this->LastInputs.clear(); |
| 118 | |
| 119 | if (this->DepthPassContourValues) |
| 120 | { |
| 121 | this->DepthPassContourValues->Delete(); |
| 122 | } |
| 123 | this->SetTransfer2DYAxisArray(nullptr); |
| 124 | } |
| 125 | |
| 126 | //------------------------------------------------------------------------------ |
| 127 | // The render method that is called from the volume. If this is a canonical |
nothing calls this directly
no test coverage detected