------------------------------------------------------------------------------
| 1727 | |
| 1728 | //------------------------------------------------------------------------------ |
| 1729 | int vtkSLACReader::MeshUpToDate() |
| 1730 | { |
| 1731 | if (this->MeshReadTime < this->GetMTime()) |
| 1732 | { |
| 1733 | return 0; |
| 1734 | } |
| 1735 | if (this->MeshReadTime < this->Internal->VariableArraySelection->GetMTime()) |
| 1736 | { |
| 1737 | return 0; |
| 1738 | } |
| 1739 | return 1; |
| 1740 | } |
| 1741 | |
| 1742 | //------------------------------------------------------------------------------ |
| 1743 | int vtkSLACReader::RestoreMeshCache(vtkMultiBlockDataSet* surfaceOutput, |