Refactor some static globals

This commit is contained in:
Manish Mathai 2021-08-06 03:01:41 -07:00
parent 1ceb137751
commit 2130ed5915

@ -58,12 +58,12 @@ vtkm::Id DataSetDim;
// Image size:
vtkm::Id ImageSize;
// The input datasets we'll use on the filters:
static vtkm::cont::DataSet InputDataSet;
static vtkm::cont::PartitionedDataSet PartitionedInputDataSet;
vtkm::cont::DataSet InputDataSet;
vtkm::cont::PartitionedDataSet PartitionedInputDataSet;
// The point scalars to use:
static std::string PointScalarsName;
std::string PointScalarsName;
// The point vectors to use:
static std::string PointVectorsName;
std::string PointVectorsName;
enum class RenderingMode
{