MCPcopy Create free account
hub / github.com/Kitware/VTK / RequestUpdateExtent

Method RequestUpdateExtent

Filters/ParallelImaging/vtkExtractPiece.cxx:27–38  ·  view source on GitHub ↗

=============================================================================

Source from the content-addressed store, hash-verified

25
26//=============================================================================
27int vtkExtractPiece::RequestUpdateExtent(vtkInformation* vtkNotUsed(request),
28 vtkInformationVector** inputVector, vtkInformationVector* vtkNotUsed(outputVector))
29{
30 // get the info object
31 vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
32
33 inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(), 0);
34 inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(), 1);
35 inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(), 0);
36
37 return 1;
38}
39
40//=============================================================================
41int vtkExtractPiece::RequestDataObject(

Callers

nothing calls this directly

Calls 2

GetInformationObjectMethod · 0.80
SetMethod · 0.45

Tested by

no test coverage detected