------------------------------------------------------------------------------
| 220 | |
| 221 | //------------------------------------------------------------------------------ |
| 222 | int vtkHyperTreeGridAlgorithm::RequestUpdateExtent( |
| 223 | vtkInformation*, vtkInformationVector** inputVector, vtkInformationVector*) |
| 224 | { |
| 225 | int numInputPorts = this->GetNumberOfInputPorts(); |
| 226 | for (int i = 0; i < numInputPorts; ++i) |
| 227 | { |
| 228 | int numInputConnections = this->GetNumberOfInputConnections(i); |
| 229 | for (int j = 0; j < numInputConnections; ++j) |
| 230 | { |
| 231 | vtkInformation* inputInfo = inputVector[i]->GetInformationObject(j); |
| 232 | inputInfo->Set(vtkStreamingDemandDrivenPipeline::EXACT_EXTENT(), 1); |
| 233 | } |
| 234 | } |
| 235 | return 1; |
| 236 | } |
| 237 | |
| 238 | //------------------------------------------------------------------------------ |
| 239 | int vtkHyperTreeGridAlgorithm::RequestData(vtkInformation* vtkNotUsed(request), |
no test coverage detected