------------------------------------------------------------------------------
| 1139 | |
| 1140 | //------------------------------------------------------------------------------ |
| 1141 | bool vtkCellArray::CanConvertToFixedSize32BitStorage() const |
| 1142 | { |
| 1143 | if (this->IsStorageFixedSize32Bit()) |
| 1144 | { |
| 1145 | return true; |
| 1146 | } |
| 1147 | const vtkIdType homogeneousCellSize = this->IsHomogeneous(); |
| 1148 | if (homogeneousCellSize >= 0) |
| 1149 | { |
| 1150 | bool result; |
| 1151 | this->Dispatch(CanConvert<AOSArray32::ValueType>{}, result); |
| 1152 | return result; |
| 1153 | } |
| 1154 | return false; |
| 1155 | } |
| 1156 | |
| 1157 | //------------------------------------------------------------------------------ |
| 1158 | bool vtkCellArray::CanConvertToFixedSize64BitStorage() const |