----------------------------------------------------------------------------
| 6099 | |
| 6100 | //---------------------------------------------------------------------------- |
| 6101 | void vtkDIYGhostUtilities::ExchangeFieldData(diy::Master& master, std::vector<vtkDataSet*>& inputs, |
| 6102 | std::vector<vtkDataSet*>& outputs, bool syncCell, bool syncPoint) |
| 6103 | { |
| 6104 | if (syncCell) |
| 6105 | { |
| 6106 | ExchangeFieldData(master, inputs, outputs, vtkDataSet::AttributeTypes::CELL); |
| 6107 | } |
| 6108 | if (syncPoint) |
| 6109 | { |
| 6110 | ExchangeFieldData(master, inputs, outputs, vtkDataSet::AttributeTypes::POINT); |
| 6111 | } |
| 6112 | } |
| 6113 | |
| 6114 | //---------------------------------------------------------------------------- |
| 6115 | void vtkDIYGhostUtilities::ExchangeFieldData(diy::Master& master, std::vector<vtkDataSet*>& inputs, |
nothing calls this directly
no test coverage detected