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

Method RequestUpdateExtent

Common/ExecutionModel/vtkHyperTreeGridAlgorithm.cxx:222–236  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

220
221//------------------------------------------------------------------------------
222int 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//------------------------------------------------------------------------------
239int vtkHyperTreeGridAlgorithm::RequestData(vtkInformation* vtkNotUsed(request),

Callers 1

ProcessRequestMethod · 0.95

Calls 4

GetInformationObjectMethod · 0.80
GetNumberOfInputPortsMethod · 0.45
SetMethod · 0.45

Tested by

no test coverage detected