------------------------------------------------------------------------------
| 32 | |
| 33 | //------------------------------------------------------------------------------ |
| 34 | vtkTypeBool vtkAnnotationLayersAlgorithm::ProcessRequest( |
| 35 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 36 | { |
| 37 | // generate the data |
| 38 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 39 | { |
| 40 | return this->RequestData(request, inputVector, outputVector); |
| 41 | } |
| 42 | |
| 43 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_TIME())) |
| 44 | { |
| 45 | return this->RequestUpdateTime(request, inputVector, outputVector); |
| 46 | } |
| 47 | |
| 48 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 49 | { |
| 50 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 51 | } |
| 52 | |
| 53 | // execute information |
| 54 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 55 | { |
| 56 | return this->RequestInformation(request, inputVector, outputVector); |
| 57 | } |
| 58 | |
| 59 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 60 | } |
| 61 | |
| 62 | //------------------------------------------------------------------------------ |
| 63 | int vtkAnnotationLayersAlgorithm::FillOutputPortInformation( |
nothing calls this directly
no test coverage detected