------------------------------------------------------------------------------
| 174 | |
| 175 | //------------------------------------------------------------------------------ |
| 176 | void vtkVolumeTexture::SetInterpolation(int interpolation) |
| 177 | { |
| 178 | this->InterpolationType = interpolation; |
| 179 | |
| 180 | if (!this->StreamBlocks) |
| 181 | { |
| 182 | this->Texture->Activate(); |
| 183 | this->Texture->SetMagnificationFilter(interpolation); |
| 184 | this->Texture->SetMinificationFilter(interpolation); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | //------------------------------------------------------------------------------ |
| 189 | vtkVolumeTexture::VolumeBlock* vtkVolumeTexture::GetNextBlock() |
no test coverage detected