------------------------------------------------------------------------------
| 207 | |
| 208 | //------------------------------------------------------------------------------ |
| 209 | vtkTIFFReader::vtkTIFFReaderInternal::vtkTIFFReaderInternal() |
| 210 | { |
| 211 | this->Image = nullptr; |
| 212 | // Note that this suppresses all error/warning output from libtiff! |
| 213 | TIFFSetErrorHandler(&vtkTIFFReaderInternalErrorHandler); |
| 214 | TIFFSetWarningHandler(&vtkTIFFReaderInternalErrorHandler); |
| 215 | this->Clean(); |
| 216 | } |
| 217 | |
| 218 | //------------------------------------------------------------------------------ |
| 219 | bool vtkTIFFReader::vtkTIFFReaderInternal::Initialize() |
nothing calls this directly
no test coverage detected