------------------------------------------------------------------------------
| 1166 | |
| 1167 | //------------------------------------------------------------------------------ |
| 1168 | bool vtkCellArray::CanConvertToDefaultStorage() const |
| 1169 | { |
| 1170 | if (this->GetDefaultStorageIs64Bit()) |
| 1171 | { |
| 1172 | return this->CanConvertTo64BitStorage(); |
| 1173 | } |
| 1174 | else |
| 1175 | { |
| 1176 | return this->CanConvertTo32BitStorage(); |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | //------------------------------------------------------------------------------ |
| 1181 | bool vtkCellArray::ConvertTo32BitStorage() |
nothing calls this directly
no test coverage detected