------------------------------------------------------------------------------
| 1046 | |
| 1047 | //------------------------------------------------------------------------------ |
| 1048 | void vtkCellArray::Use64BitStorage() |
| 1049 | { |
| 1050 | if (this->IsStorage64Bit()) |
| 1051 | { |
| 1052 | this->Initialize(); |
| 1053 | return; |
| 1054 | } |
| 1055 | this->Offsets = vtkSmartPointer<AOSArray64>::New(); |
| 1056 | this->Connectivity = vtkSmartPointer<AOSArray64>::New(); |
| 1057 | this->GetOffsetsAOSArray64()->InsertNextValue(0); |
| 1058 | this->StorageType = StorageTypes::Int64; |
| 1059 | this->Modified(); |
| 1060 | } |
| 1061 | |
| 1062 | //------------------------------------------------------------------------------ |
| 1063 | void vtkCellArray::UseDefaultStorage() |