------------------------------------------------------------------------------
| 1108 | |
| 1109 | //------------------------------------------------------------------------------ |
| 1110 | void vtkCellArray::UseFixedSizeDefaultStorage(vtkIdType cellSize) |
| 1111 | { |
| 1112 | if (this->GetDefaultStorageIs64Bit()) |
| 1113 | { |
| 1114 | this->UseFixedSize64BitStorage(cellSize); |
| 1115 | } |
| 1116 | else |
| 1117 | { |
| 1118 | this->UseFixedSize32BitStorage(cellSize); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | //------------------------------------------------------------------------------ |
| 1123 | bool vtkCellArray::CanConvertTo32BitStorage() const |