------------------------------------------------------------------------------
| 149 | |
| 150 | //------------------------------------------------------------------------------ |
| 151 | int vtkXMLCompositeDataWriter::RequestUpdateExtent(vtkInformation* vtkNotUsed(request), |
| 152 | vtkInformationVector** inputVector, vtkInformationVector* vtkNotUsed(outputVector)) |
| 153 | { |
| 154 | vtkInformation* inInfo = inputVector[0]->GetInformationObject(0); |
| 155 | inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(), this->GhostLevel); |
| 156 | return 1; |
| 157 | } |
| 158 | |
| 159 | //------------------------------------------------------------------------------ |
| 160 | int vtkXMLCompositeDataWriter::RequestData( |
no test coverage detected