------------------------------------------------------------------------------
| 75 | |
| 76 | //------------------------------------------------------------------------------ |
| 77 | int vtkImageGaussianSmooth::RequestUpdateExtent(vtkInformation* vtkNotUsed(request), |
| 78 | vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 79 | { |
| 80 | // get the info objects |
| 81 | vtkInformation* outInfo = outputVector->GetInformationObject(0); |
| 82 | vtkInformation* inInfo = inputVector[0]->GetInformationObject(0); |
| 83 | |
| 84 | int wholeExtent[6], inExt[6]; |
| 85 | |
| 86 | outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), inExt); |
| 87 | |
| 88 | // Expand filtered axes |
| 89 | inInfo->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(), wholeExtent); |
| 90 | |
| 91 | this->InternalRequestUpdateExtent(inExt, wholeExtent); |
| 92 | |
| 93 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(), inExt, 6); |
| 94 | |
| 95 | return 1; |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | void vtkImageGaussianSmooth::InternalRequestUpdateExtent(int* inExt, int* wholeExtent) |
nothing calls this directly
no test coverage detected