----------------------------------------------------------------------------
| 5949 | |
| 5950 | //---------------------------------------------------------------------------- |
| 5951 | void vtkDIYGhostUtilities::InitializeBlocks( |
| 5952 | diy::Master& master, std::vector<vtkDataSet*>& inputs, bool syncCell, bool syncPoint) |
| 5953 | { |
| 5954 | if (syncCell) |
| 5955 | { |
| 5956 | InitializeBlocks(master, inputs, vtkDataSet::AttributeTypes::CELL, |
| 5957 | vtkDataSetAttributes::CellGhostTypes::DUPLICATECELL); |
| 5958 | } |
| 5959 | if (syncPoint) |
| 5960 | { |
| 5961 | InitializeBlocks(master, inputs, vtkDataSet::AttributeTypes::POINT, |
| 5962 | vtkDataSetAttributes::PointGhostTypes::DUPLICATEPOINT); |
| 5963 | } |
| 5964 | } |
| 5965 | |
| 5966 | //---------------------------------------------------------------------------- |
| 5967 | void vtkDIYGhostUtilities::InitializeBlocks( |
nothing calls this directly
no test coverage detected