------------------------------------------------------------------------------
| 32 | |
| 33 | //------------------------------------------------------------------------------ |
| 34 | int vtkTransmitStructuredDataPiece::RequestInformation(vtkInformation* vtkNotUsed(request), |
| 35 | vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 36 | { |
| 37 | if (this->Controller) |
| 38 | { |
| 39 | int wExt[6]; |
| 40 | if (this->Controller->GetLocalProcessId() == 0) |
| 41 | { |
| 42 | vtkInformation* inInfo = inputVector[0]->GetInformationObject(0); |
| 43 | inInfo->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(), wExt); |
| 44 | } |
| 45 | this->Controller->Broadcast(wExt, 6, 0); |
| 46 | vtkInformation* outInfo = outputVector->GetInformationObject(0); |
| 47 | outInfo->Set(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(), wExt, 6); |
| 48 | } |
| 49 | return 1; |
| 50 | } |
| 51 | |
| 52 | //------------------------------------------------------------------------------ |
| 53 | int vtkTransmitStructuredDataPiece::RequestUpdateExtent(vtkInformation* vtkNotUsed(request), |
nothing calls this directly
no test coverage detected