------------------------------------------------------------------------------
| 1851 | |
| 1852 | //------------------------------------------------------------------------------ |
| 1853 | int vtkAlgorithm::UpdateExtentIsEmpty(vtkInformation* pinfo, vtkDataObject* output) |
| 1854 | { |
| 1855 | if (output == nullptr) |
| 1856 | { |
| 1857 | return 1; |
| 1858 | } |
| 1859 | |
| 1860 | // get the pinfo object then call the info signature |
| 1861 | return this->UpdateExtentIsEmpty( |
| 1862 | pinfo, output->GetInformation()->Get(vtkDataObject::DATA_EXTENT_TYPE())); |
| 1863 | } |
| 1864 | //------------------------------------------------------------------------------ |
| 1865 | int vtkAlgorithm::UpdateExtentIsEmpty(vtkInformation* info, int extentType) |
| 1866 | { |
no test coverage detected