------------------------------------------------------------------------------
| 1117 | |
| 1118 | //------------------------------------------------------------------------------ |
| 1119 | void vtkXMLUnstructuredDataWriter::SetInputUpdateExtent(int piece, int numPieces, int ghostLevel) |
| 1120 | { |
| 1121 | vtkInformation* inInfo = this->GetExecutive()->GetInputInformation(0, 0); |
| 1122 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(), numPieces); |
| 1123 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(), piece); |
| 1124 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(), ghostLevel); |
| 1125 | } |
| 1126 | VTK_ABI_NAMESPACE_END |
no test coverage detected