Skip to content

Improvements on different readers ,writers and datamodels so they can handle bigger files

This MR is in three commits :

  • A commit that replace stat() usage by vtksys::SystemTools::Stat so bigger than 4Gb can be opened on windows, on multiple readers.
  • A commit that replace int usage to vtkIdType for numCells/numPoints/numRows in legacy readers and writers, so bigger topology than INT_MAX can be opened.
  • A commit that ensure NumberOfPoints and NumberOfCells computation are made in vtkIdType, not int

Merge request reports