------------------------------------------------------------------------------
| 1061 | |
| 1062 | //------------------------------------------------------------------------------ |
| 1063 | void vtkCellArray::UseDefaultStorage() |
| 1064 | { |
| 1065 | if (this->GetDefaultStorageIs64Bit()) |
| 1066 | { |
| 1067 | this->Use64BitStorage(); |
| 1068 | } |
| 1069 | else |
| 1070 | { |
| 1071 | this->Use32BitStorage(); |
| 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | //------------------------------------------------------------------------------ |
| 1076 | void vtkCellArray::UseFixedSize32BitStorage(vtkIdType cellSize) |