------------------------------------------------------------------------------
| 98 | |
| 99 | //------------------------------------------------------------------------------ |
| 100 | int vtkAnnotationLayersAlgorithm::RequestUpdateExtent(vtkInformation* vtkNotUsed(request), |
| 101 | vtkInformationVector** inputVector, vtkInformationVector* vtkNotUsed(outputVector)) |
| 102 | { |
| 103 | int numInputPorts = this->GetNumberOfInputPorts(); |
| 104 | for (int i = 0; i < numInputPorts; i++) |
| 105 | { |
| 106 | int numInputConnections = this->GetNumberOfInputConnections(i); |
| 107 | for (int j = 0; j < numInputConnections; j++) |
| 108 | { |
| 109 | vtkInformation* inputInfo = inputVector[i]->GetInformationObject(j); |
| 110 | inputInfo->Set(vtkStreamingDemandDrivenPipeline::EXACT_EXTENT(), 1); |
| 111 | } |
| 112 | } |
| 113 | return 1; |
| 114 | } |
| 115 | |
| 116 | //------------------------------------------------------------------------------ |
| 117 | int vtkAnnotationLayersAlgorithm::RequestUpdateTime( |
no test coverage detected