------------------------------------------------------------------------------
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | void vtkXMLPolyDataReader::GetOutputUpdateExtent(int& piece, int& numberOfPieces, int& ghostLevel) |
| 100 | { |
| 101 | vtkInformation* outInfo = this->GetCurrentOutputInformation(); |
| 102 | piece = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()); |
| 103 | numberOfPieces = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()); |
| 104 | ghostLevel = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()); |
| 105 | } |
| 106 | |
| 107 | //------------------------------------------------------------------------------ |
| 108 | void vtkXMLPolyDataReader::SetupOutputTotals() |
nothing calls this directly
no test coverage detected