=============================================================================
| 25 | |
| 26 | //============================================================================= |
| 27 | int vtkExtractPiece::RequestUpdateExtent(vtkInformation* vtkNotUsed(request), |
| 28 | vtkInformationVector** inputVector, vtkInformationVector* vtkNotUsed(outputVector)) |
| 29 | { |
| 30 | // get the info object |
| 31 | vtkInformation* inInfo = inputVector[0]->GetInformationObject(0); |
| 32 | |
| 33 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(), 0); |
| 34 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(), 1); |
| 35 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(), 0); |
| 36 | |
| 37 | return 1; |
| 38 | } |
| 39 | |
| 40 | //============================================================================= |
| 41 | int vtkExtractPiece::RequestDataObject( |
nothing calls this directly
no test coverage detected