Skip to content
Snippets Groups Projects
Commit 3dcf4bb0 authored by Mathieu Westphal (Kitware)'s avatar Mathieu Westphal (Kitware) :zap:
Browse files

vtkGenerateTimeSteps: Fix generate timesteps timesteps forward to input

parent d03d96c4
No related branches found
No related tags found
No related merge requests found
......@@ -103,16 +103,6 @@ int vtkGenerateTimeSteps::RequestInformation(vtkInformation* vtkNotUsed(request)
return 1;
}
//------------------------------------------------------------------------------
int vtkGenerateTimeSteps::RequestUpdateExtent(vtkInformation* vtkNotUsed(request),
vtkInformationVector** inputVector, vtkInformationVector* vtkNotUsed(outputVector))
{
// Completely ignore update times and always request the first one if any
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_TIME_STEP(), 0);
return 1;
}
//------------------------------------------------------------------------------
int vtkGenerateTimeSteps::RequestData(vtkInformation* vtkNotUsed(request),
vtkInformationVector** inputVector, vtkInformationVector* outputVector)
......
......@@ -18,7 +18,7 @@
*
* A vtkPassInputTypeAlgorithm that add timesteps during the request information
* pass and just shallow copy its input to its output. Input timesteps are completely
* ignored and the first timestep will be requested if any.
* ignored.
*/
#ifndef vtkGenerateTimeSteps_h
......@@ -78,7 +78,6 @@ protected:
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
int RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
int RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
std::vector<double> TimeStepValues;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment