Fallback for other dataset types.
| 940 | |
| 941 | // Fallback for other dataset types. |
| 942 | int DataSetExecute(vtkDataSet* input, const unsigned char* ghosts, unsigned char* bPoints, |
| 943 | unsigned char* bCells, vtkIdType* bFaces, vtkMarkBoundaryFilter* self) |
| 944 | { |
| 945 | // Perform the threaded boundary marking. |
| 946 | vtkIdType numCells = input->GetNumberOfCells(); |
| 947 | MarkDataSet mark(input, ghosts, bPoints, bCells, bFaces, self); |
| 948 | vtkSMPTools::For(0, numCells, mark); |
| 949 | |
| 950 | return 1; |
| 951 | } |
| 952 | |
| 953 | } // anonymous namespace |
| 954 |
no test coverage detected